在ASP.NET中的Web.Config中模拟标签

前端之家收集整理的这篇文章主要介绍了在ASP.NET中的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"/>

我在哪里错了?

解决方法

身份部分在system.web部分下,不在身份验证中:
<system.web>
  <authentication mode="Windows"/>
  <identity impersonate="true" userName="foo" password="bar"/>
</system.web>
原文链接:https://www.f2er.com/aspnet/250553.html

猜你在找的asp.Net相关文章