<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<customErrors mode="Off" />
<profile defaultProvider="SqlPProvider" enabled="true">
<providers>
<add name="SqlPProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=1.2.3400.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="SqlPProviderConnection" />
</providers>
<properties>
<add name="FavoriteURLs" type="System.Collections.Specialized.StringCollection" readOnly="false" serializeAs="Xml" />
</properties>
</profile>
<anonymousIdentification enabled="true" cookieless="UseDeviceProfile" />
<authentication mode="Forms">
<forms>
<credentials passwordFormat="Clear">
<user name="a" password="a" />
</credentials>
</forms>
</authentication>
<authorization>
<deny users="?" />
</authorization>
</system.web>
<connectionStrings>
<add name="SqlPProviderConnection" connectionString="server=<Server> ;UID=<User>;PWD=<Password>;Initial Catalog=<Catalog>" />
</connectionStrings>
</configuration>