vote up 0 vote down star

Hi guys,

I am trying to save an image file in a custom module I am building for a DNN site.

However when I run the code I get an UnauthorizedAccessException.

if(upLoadAddImg.HasFile)
            {
                String imageLocation = ConfigurationManager.AppSettings["ImageFolderPath"];

            //Upload file 

            upLoadAddImg.SaveAs(Server.MapPath(imageLocation));

}

I am running on localhost using the internal visual studio server. Tthe folderpath is all right and I have made sure Network Service has full permissions.

Am I missing something obvious or does DNN have some special permission setting I am missing?

flag
What web server? – Daniel A. White Jul 9 at 18:13
I am running off the internal development server in Visual Studio 2008 – NickJ Jul 9 at 19:05
Are you sure that Network Service is your web site's identity? What version of IIS are you running? – Ian Robinson Jul 13 at 19:36

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.