Relax. ASP.NET Web Hosting without the hassles. Ring 1300 787 698
(
Skip Navigation Links : Knowledge Base : ASP.NET : Giving an ASP.NET site write privileges

Giving an ASP.NET site write privileges 

To enable write access to your ASP.NET site you will need to enable Impersonation in the web.config file.
The line should look something like this and be within the system.web tags.

<identity impersonate="true"/>
 

 

)