Reputation: 703
I have a network shared folder and I want to access that folder from my asp.net mvc application.
It works fine on local but when I deploy it on the server it fails
Folder is user and password protected
The question is how to configure application to pass the authentication
Upvotes: 1
Views: 1310
Reputation: 5803
Assuming you mean the folder is not local to the web server, I believe you need to setup delegation as described here: How to configure an ASP.NET application for a delegation scenario.
Upvotes: 1