We have a problem allowing users of the same network to exchange links with shared network folders. Using ASP.NET, the generated code is as follows: <asp:HyperLink ID="HyperLink1" runat="server" NavigateURL="file://///server/network_folder/" />
Unfortunately, it does not have the desired effect that we wanted; he would not do anything when pressed, whether on IE8, Firefox (15.0.1) or Chrome (21.0.1180.89 m).
Looking around, I found that access to it can only be possible if the client browser is configured to allow permissions for the server (apparently due to security reasons).
To get rid of the need to walk around and set the resolution for each client browser manually, is it possible to allow temporary permissions in a file with code (C #)?
Any other suggestions are welcome.
source share