0

我想将域密钥和值添加到我的 web.config 以进行 ldap 身份验证,但是在添加时

<domain>
   <add key="don"  value="fffT"/>
   <add key="LD" value="LDAP://n.tt.sg/DC=ttt,DC=xx,DC=exxxx,DC=sg"/>
</domain>

它显示错误could not find schema information of value and key。我应该写什么而不是

  <section name="domain" type="System.Configuration.NameValueFileSectionHandler,System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>  
4

2 回答 2

0

这样做

<configuration> 
<appSettings> 
<add key="don"  value="fffT"/>
<add key="LD" value="LDAP://n.tt.sg/DC=ttt,DC=xx,DC=exxxx,DC=sg"/>
</appSettings>
</configuration>

将 Key 和 values 放在appSettingsweb.confing 的 Section 中

于 2013-06-27T05:16:10.590 回答
0

System.Configuration.NameValueFileSectionHandler来自System组装,而不是System.Web.Extensions.

type="System.Configuration.NameValueFileSectionHandler, System, Version=3.5.0.0,         Culture=neutral, PublicKeyToken=b77a5c561934e089"
于 2013-06-27T05:19:05.183 回答