当我想在远程服务器上上传文件时,出现此错误,这是

问题描述:

当我想在远程服务器中上传文件时,出现此错误和D:\ My Project \ AzadUniv \ New \ 55 \中的

when i want file upload in remote server i get this error and this

GUI.AddNews.btnSave_Click(Object sender, EventArgs e) in D:\My Project\AzadUniv\New\55\GUI\AddNews.aspx.cs:59

是我计算机中的绝对路径,我不知道服务器中的apper如何不使用我的代码中的绝对路径
请帮帮我.



is absolute path in my computer idon''t know how apper in server which i don''t user absolute path in my code
please help me.



Server Error in '/' Application.
 
Access to the path '~\Upload\NewsImage' is denied.
 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
 
Exception Details: System.UnauthorizedAccessException: Access to the path '~\Upload\NewsImage' is denied. 
 
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource 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 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user. 
 
To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.
 
Source Error: 
 
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
 
Stack Trace: 
 

[UnauthorizedAccessException: Access to the path '~\Upload\NewsImage' is denied.]
   System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +9726046
   System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj) +9497018
   System.IO.Directory.CreateDirectory(String path) +146
   GUI.AddNews.btnSave_Click(Object sender, EventArgs e) in D:\My Project\AzadUniv\New\55\GUI\AddNews.aspx.cs:59
   System.Web.UI.WebControls.Button.OnClick(EventArgs e) +118
   System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +112
   System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +36
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5563
 
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1

错误是拒绝访问路径〜\ Upload \ NewsImage".这只是一个权限问题.您需要将该文件夹的权限授予运行您网站所在的应用程序池的帐户.
The error is "Access to the path ''~\Upload\NewsImage'' is denied." It''s just a permissions issue. You need to grant permissions to that folder to the account that is running the App Pool your site is in.


清楚地写在异常消息中,您需要做什么...

考虑将资源的访问权限授予ASP.NET请求标识.ASP.NET具有基本进程标识(在IIS 5上通常为{MACHINE} \ ASPNET或在IIS 6和IIS 7上通常为Network Service,并且具有配置的应用程序池标识在IIS 7.5上

因此,将指定文件夹的读取/写入权限授予网络服务或IIS 6/7中运行应用程序池的身份
It is clearly written in the exception messsage what you need to do...

"Consider granting access rights to the resource 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 and IIS 7, and the configured application pool identity on IIS 7.5"

So give Read/Write permission on the specified folder to Network Service or the identity on which the app pool is running in IIS 6/7


如果检查错误原因详细信息,则会发现问题解决方案.

在这里检查
If you check your errors cause detail, you will find problem solution.

check here
Exception Details: System.UnauthorizedAccessException: Access to the path '~\Upload\NewsImage' is denied..

ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource 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 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via &lt;identity impersonate=&quot;true&quot;/&gt;, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.

To grant ASP.NET access to a file, right-click the file in Explorer, choose &quot;Properties&quot; and select the Security tab. Click &quot;Add&quot; to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.


如果可以访问服务器,请打开位于inetpub>>下的文件.虚拟主机>> domainnames.com>> httpdocs>>在您的项目文件中找到上传文件和

做这个
"
要授予ASP.NET对文件的访问权限,请在资源管理器中右键单击该文件,然后选择并选择安全性"选项卡.点击添加".添加适当的用户或组.突出显示ASP.NET帐户,然后选中所需访问权限的框
"

如果您不是服务器的所有者并且无法通过远程连接访问服务器
使用面板来管理域和文件,然后授予对文件和子文件的写入和修改权限


if you can reach your server, open your file which was located under the inetpub >> vhosts >> domainnames.com >> httpdocs >> find in your project files Uploads file and

do this
"
To grant ASP.NET access to a file, right-click the file in Explorer, choose &quot;Properties&quot; and select the Security tab. Click &quot;Add&quot; to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access
"

if you arent owner of server and can not reach to server with remote connection then
use your panel for manage domains and files then give write and modify permissions to your files and child files