I have a Web Intranet Application, with windows authentication which creates a file and saves it to a folder locally. I want the user to be able to open that folder.
I am currently doing this,
System.Diagnostics.Process.Start("C:\ABC");
The above code was running fine while development on my local machine. But it doesn't work after i deployed it to server. I want user to open the C:\ABC folder which exists on server.
I gave Application Pool the rights and now both User and app pool, have full rights to the folder. And now i am getting the plain error
Access Denied.
But why ?