如何从网络驱动器读取 Excel 文件?
我有一个 dotnet 2.0 C#/web 应用程序。
我可以手动进入网络驱动器并从中获取模板。但是通过我的应用程序,当我尝试访问此文件时......它显示“访问被拒绝”。
这该怎么办?请帮助
编辑:以下工作吗?
a)为“IUSR_WEBSERVER”设置密码 b) 在 webconfig 中添加以下行将解决
<identity impersonate="true" userName="IUSR_WEBSERVER" password="password" /> </system.web>
如果它有效,这意味着我们需要更改 IIS 配置..right。还有什么办法吗。
I have a dotnet 2.0 C#/web application.
I am able to manually go into a network drive and get a template from that. But through my application, when I try to access this file..it says "access denied".
What to do with this ? Please help
EDIT: Will following work ?
a)Set password for "IUSR_WEBSERVER"
b)And adding below line to webconfig will solve
<identity impersonate="true" userName="IUSR_WEBSERVER" password="password" /> </system.web>
If it work, that means, we need to change IIS config..right. Is there anyother way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否以有权访问此位置的用户身份运行 Web 应用程序?默认情况下,IIS(在 Windows 中托管网站)在受限帐户下运行。您可以通过更改应用程序池设置将其更改为具有访问权限的域帐户。
编辑 对于 IIS 5 (Windows XP),没有应用程序池的概念。 这将帮助您更改用户。
Are you running your web application as a user that has access to this location? By default, IIS (that which hosts websites in Windows) runs under a restricted account. You could change this to a domain account that has access by changing the application pool settings.
EDIT For IIS 5 (Windows XP), there is no concept of application pools. This will help you change your user.
使用 IIS 管理器...
1) 创建一个新的应用程序池并将身份设置为以您的身份运行。
2) 转到网站的属性并将应用程序池设置为您刚刚创建的应用程序池。
Using IIS Manager...
1) Create a new application pool and set the Identity to run as you.
2) Go to the properties of your web site and set the application pool to the application pool you just created.