function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Code+1Code+1 

Open Shared Folder on click of hyperlink

Hi All,

 I have a requirement, wherein the user will click on a hyperlink.
 Then on clicking of the hyperlink, it should open a shared folder.
 Datatype of the hyperlink is URL and the data will be like C:\Users

 Please let me know a.s.a.p

Thanks ..
AshlekhAshlekh
Hi,

You can use below code.
 
<a href="file:///C:\Users"> Users</a>
<a href="file:///<YOUR_FILE_PATH"> MY file path </a>

-Thanks
Ashlekh Gera


 
Code+1Code+1
Hi Ashlekh,

 User needs this field in the Object's detail page.
 This is not a seperate visual force page.
 Kindly let me know in case of any ideas.

Thanks !
Code+1Code+1

Hi Ashlekh,
 Even the code which is provided does not re-direct to the page.
 Please find the below code.

<apex:page >
<a href="file:///C:\Users"> Users</a>
<a href="file:///<YOUR_FILE_PATH"> MY file path </a>
</apex:page>

Does it require any changes ? Kindly suggest.

Thanks !