编译通过却被告之以下错误,我该如何解决?谢谢各位了
“/WebHtmlInputFile”应用程序中的服务器错误。
--------------------------------------------------------------------------------对路径“e:\inetpub\wwwroot\WebHtmlInputFile\pagerror.gif”的访问被拒绝。 
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 异常详细信息: System.UnauthorizedAccessException: 对路径“e:\inetpub\wwwroot\WebHtmlInputFile\pagerror.gif”的访问被拒绝。 ASP.NET 未被授权访问所请求的资源。请考虑授予 ASP.NET 请求标识访问此资源的权限。ASP.NET 有一个在应用程序没有模拟时使用的基进程标识(通常,在 IIS 5 上为 {MACHINE}\ASPNET,在 IIS 6 上为网络服务)。如果应用程序正在通过 <identity impersonate="true"/> 模拟,则标识将为匿名用户(通常为 IUSR_MACHINENAME)或经过身份验证的请求用户。 若要授予 ASP.NET 对文件的写访问权,请在资源管理器中右击该文件,选择“属性”,然后选择“安全”选项卡。单击“添加”添加适当的用户或组。突出显示 ASP.NET 帐户,选中所需访问权限对应的框。源错误: 
行 44:  string strFileName=AFileName[AFileName.Length-1];
行 45:  rName.Text=strFileName;
行 46:  hpf.SaveAs(Server.MapPath(".")+"\\"+strFileName);
行 47:  }
行 48:  #region Web 窗体设计器生成的代码
 源文件: e:\inetpub\wwwroot\webhtmlinputfile\webform1.aspx.cs    行: 46 堆栈跟踪: 
[UnauthorizedAccessException: 对路径“e:\inetpub\wwwroot\WebHtmlInputFile\pagerror.gif”的访问被拒绝。]
   System.IO.__Error.WinIOError(Int32 errorCode, String str) +393
   System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy) +888
   System.IO.FileStream..ctor(String path, FileMode mode) +52
   System.Web.HttpPostedFile.SaveAs(String filename)
   WebHtmlInputFile.WebForm1.DoUpLoad(Object src, EventArgs e) in e:\inetpub\wwwroot\webhtmlinputfile\webform1.aspx.cs:46
   System.Web.UI.HtmlControls.HtmlInputButton.OnServerClick(EventArgs e)
   System.Web.UI.HtmlControls.HtmlInputButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
   System.Web.UI.Page.ProcessRequestMain()