Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <configuration>
- <configSections>
- <sectionGroup name="system.net">
- <section name="authenticationModules"
- type="System.Net.Configuration.NetAuthenticationModuleHandler,
- System, Version=1.0.3300.0, Culture=neutral,
- PublicKeyToken=b77a5c561934e089"/>
- <section name="webRequestModules"
- type="System.Net.Configuration.WebRequestModuleHandler,
- System, Version=1.0.3300.0, Culture=neutral,
- PublicKeyToken=b77a5c561934e089"/>
- </sectionGroup>
- <sectionGroup name="system.web">
- <section name="authorization"
- type="System.Web.Configuration.AuthorizationConfigHandler,
- System.Web, Version=1.0.3300.0, Culture=neutral,
- PublicKeyToken=b03f5f7f11d50a3a"/>
- <section name="sessionState"
- type="System.Web.SessionState.SessionStateSectionHandler,
- System.Web, Version=1.0.3300.0, Culture=neutral,
- PublicKeyToken=b03f5f7f11d50a3a"
- allowDefinition="MachineToApplication"/>
- </sectionGroup>
- </configSections>
- <system.net>
- <!--Net Class Settings would go here. -->
- </system.net>
- <system.web>
- <authorization>
- <allow users="*"/> <!-- Allow all users -->
- <!-- Allow or deny specific users.
- allow users="[comma separated list of users]"
- roles="[comma separated list of roles]"/>
- <deny users="[comma separated list of users]"
- roles="[comma separated list of roles]"/>
- -->
- </authorization>
- <sessionState
- sqlConnectionString="data source=localhost;
- Integrated Security=SSPI;
- Initial Catalog=northwind"
- cookieless="false"
- timeout="10"/>
- </system.web>
- </configuration>
Advertisement
Add Comment
Please, Sign In to add comment