Hello everyone, I have a page that can only be accessed by authenticated users. This page allows authenticated users to upload images to the server. This page worked fine on my local machine but after deployment, I get an error stating that access to the server is denied .
The message also mentioned something about adding the identity element in web.config and setting the impersonation attribute to true. I am using form authentication and have added the following line to my web.config
<identity impersonate="true"/>
The page still doesn't work, it no longer throws an error but it redirects me to the Login page when I try to upload images. What else can I try to make this work? Thanks in advance.