ASP.NET is not authorized to access the requested path. Most likely you are not grant an access
the the path, wich you use in Save or Copy operation(UploadedFile.SaveAs(string path, bool overwrite) or UploadedFile.CopyTo(string path, bool overwrite)).
Consider granting access rights to the path to the ASP.NET request identity.
ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or
Network Service on IIS 6) that is used if the application is not
impersonating. If the application is impersonating via <identity
impersonate="true"/>(see "References" section), the identity will be the anonymous user (typically
IUSR_MACHINENAME) or the authenticated request user.