<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<!-- System related configurable parameter-->
<add key="DBPath" value="~\DB\DbBooking.mdb"/>
<add key="AdminMail" value="[email protected];[email protected]"/>
<add key="ContactMail" value="[email protected]"/>
<add key="KLeeMail" value="[email protected]"/>
<!-- <add key="KLeeMail" value="[email protected]"/>
<add key="AdminMail" value="[email protected];[email protected]"/>-->
</appSettings>
<connectionStrings>
<add name="DbBooking" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\OSOTSPA\DLM\IMRequisition\PjIMRequisition\DB\DbIMRequisition.mdb;Jet OLEDB:Database Password=IMPass;Persist Security Info=False" />
</connectionStrings>
<system.web>
<compilation defaultLanguage="vb" debug="true" />
<!-- CUSTOM ERROR MESSAGES
Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable.
Add <error> tags for each of the errors you want to handle.
"On" Always display custom (friendly) messages.
"Off" Always display detailed ASP.NET error information.
"RemoteOnly" Display custom (friendly) messages only to users not running
on the local Web server. This setting is recommended for security purposes, so
that you do not display application detail information to remote clients.
-->
<customErrors mode="Off"/>
<!-- AUTHENTICATION RemoteOnly
This section sets the authentication policies of the application. Possible modes are "Windows",
"Forms", "Passport" and "None"
"None" No authentication is performed.
"Windows" IIS performs authentication (Basic, Digest, or Integrated Windows) according to
its settings for the application. Anonymous access must be disabled in IIS.
"Forms" You provide a custom form (Web page) for users to enter their credentials, and then
you authenticate them in your application. A user credential token is stored in a cookie.
"Passport" Authentication is performed via a centralized authentication service provided
by Microsoft that offers a single logon and core profile services for member sites.
-->
<authentication mode="Windows" />
<!-- AUTHORIZATION
This section sets the authorization policies of the application. You can allow or deny access
to application resources by user or role. Wildcards: "*" mean everyone, "?" means anonymous
(unauthenticated) users.
-->
<authorization>
<allow users="*" /> <!-- Allow all 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>
<trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" />
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
cookieless="false"
timeout="20"
/>
<!-- GLOBALIZATION
This section sets the globalization settings of the application.
-->
<globalization culture="en-US" uiCulture="en-US" responseEncoding="windows-874" requestEncoding="windows-874" />
</system.web>
</configuration>