emblewembl
Programmer
I am trying to use Windows based authentication on our intranet. I have set my web.config file up but now it seems to reject all users whether they are logged in or not and I don't understand why!! My web.config file looks like this:
<?xml version="1.0" encoding="UTF-8" ?>
<configuration>
<appSettings>
<add key="connectionstring" value="data source=PROJSQL;Initial Catalog=SQL_Ver2;uid=bob;pwd=2235;" />
</appSettings>
<system.web>
<authentication mode="Windows" />
<identity impersonate="true" />
<authorization>
<deny users="?" />
</authorization>
</system.web>
</configuration>
What am i doing wrong? i love chocolate
<?xml version="1.0" encoding="UTF-8" ?>
<configuration>
<appSettings>
<add key="connectionstring" value="data source=PROJSQL;Initial Catalog=SQL_Ver2;uid=bob;pwd=2235;" />
</appSettings>
<system.web>
<authentication mode="Windows" />
<identity impersonate="true" />
<authorization>
<deny users="?" />
</authorization>
</system.web>
</configuration>
What am i doing wrong? i love chocolate