我在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>