<?xml version="1.0"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings>
<connectionStrings>
<add name="PEPSqlServer" connectionString="SERVER=sqlserver5.XXX.com;UID=XXXXXX;PWD=XXXXXX;Trusted_Connection=false;database=XXXXX" providerName="System.Data.SqlClient" />
</connectionStrings>
<add key="GoogleMerchantID" value="XXXXXXXX" />
<add key="GoogleMerchantKey" value="a1-XXXXXXXX" />
<add key="GoogleEnvironment" value="Sandbox" />
</appSettings>
<system.web>
<membership defaultProvider="PEPProvider">
<providers>
<add name="PEPProvider"
connectionstringname="PEPSqlServer"
type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
minRequiredPasswordLength="8"
minRequiredNonalphanumericCharacters="0"
applicationName="PEPWEB1"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
passwordFormat="Hashed"
passwordStrengthRegularExpression="" />
</providers>
</membership>
<roleManager enabled="true"
defaultProvider="PEPRoleProvider">
<providers>
<add name="PEPRoleProvider"
connectionStringName="PEPSqlServer"
applicationName="PEPWEB1"
type="System.Web.Security.SqlRoleProvider" />
</providers>
</roleManager>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
Visual Basic options:
Set strict="true" to disallow all data type conversions
where data loss can occur.
Set explicit="true" to force declaration of all variables.
-->
<pages>
<namespaces>
<clear/>
<add namespace="System"/>
<add namespace="System.Collections"/>
<add namespace="System.Collections.Specialized"/>
<add namespace="System.Configuration"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Caching"/>
<add namespace="System.Web.SessionState"/>
<add namespace="System.Web.Security"/>
<add namespace="System.Web.Profile"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Web.UI.WebControls"/>
<add namespace="System.Web.UI.WebControls.WebParts"/>
<add namespace="System.Web.UI.HtmlControls"/>
</namespaces>
</pages>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Forms">
<forms name=".PEPWEB1" />
</authentication>
<authorization>
<allow users="?"/>
</authorization>
<customErrors mode="Off"/>
</system.web>
</configuration>