I am trying to find ways, by which a user can open a folder on web-server on button click in a web application, based on windows authentication and no impersonation.
Two methods, that i have came across are :
Using href link, it works, but only in IE.
<a href="\\test\c$\xyz">Open</a> "
Using C#, It doesn't seem to work, i gave permissions to Application Pool and Users to access the folder, but was getting access denied.
System.Diagnostics.Process.Start(@"\\test\c$\xyz");