模拟 Web.Config 中的标记
我在 Asp.net 4.0 网站的 web.config 中使用 impersonate
标记。
下面是我的 Web.Config 代码:
<system.web>
<authentication mode="Windows">
<identity impersonate="true"
userName="Administrator"
password="LALLA$26526"/>
</authentication>
</system.web>
当我在 Visual Studio 中运行应用程序时,出现此错误:
Parser Error Message: Unrecognized element 'identity'.
源错误:
Line 50: <system.web>
Line 51: <authentication mode="Windows">
Line 52: <identity impersonate="true"
Line 53: userName="Administrator"
Line 54: password="LALLA$26526"/>
我哪里出错了?
I'm using impersonate
tag in my web.config in Asp.net 4.0 website.
Below is my Web.Config code:
<system.web>
<authentication mode="Windows">
<identity impersonate="true"
userName="Administrator"
password="LALLA$26526"/>
</authentication>
</system.web>
When I run app in Visual Studio I get this error:
Parser Error Message: Unrecognized element 'identity'.
Source Error:
Line 50: <system.web>
Line 51: <authentication mode="Windows">
Line 52: <identity impersonate="true"
Line 53: userName="Administrator"
Line 54: password="LALLA$26526"/>
Where am i going wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
identity
部分位于system.web
部分下,而不是位于authentication
下:The
identity
section goes under thesystem.web
section, not underauthentication
:将
identity
元素放在authentication
元素之前Put the
identity
element before theauthentication
element您将
identity
节点作为authentication
节点的子节点。这就是问题所在。如上例所示,authentication
和identity
节点必须是system.web
节点的子节点You had the
identity
node as a child ofauthentication
node. That was the issue. As in the example above,authentication
andidentity
nodes must be children of thesystem.web
node