上周给Prever Start换了一个国内的虚拟主机,速度是快了不少,不过很快发现ASP.NET貌似没有写权限,导致很多功能没法用,今天Google了一下,很快找到了解决办法,现在共享下。
在Web.config文件的<system.web>节点下加入:
<identity impersonate=”true” />
或者是:
<identity impersonate=”true” userName=”YourAdminUsr” password=”YourAdminPwd” />
Moved to a new place, visit https://vane.life for most recent content.
上周给Prever Start换了一个国内的虚拟主机,速度是快了不少,不过很快发现ASP.NET貌似没有写权限,导致很多功能没法用,今天Google了一下,很快找到了解决办法,现在共享下。
在Web.config文件的<system.web>节点下加入:
<identity impersonate=”true” />
或者是:
<identity impersonate=”true” userName=”YourAdminUsr” password=”YourAdminPwd” />