I have a fileupload input field that upload files to. In the matching controller method
I use the following:
HttpPostedFileBase uploadFile
uploadFile.SaveAs(path);
But the error message I get is like this:
Access to the path ‘xxx’ is denied.
I tried the following in the web.config:
<identity impersonate="false" />
But it does not work.
Any ideas?
I think that there is one basic think that you must check.