You are on page 1of 3

<?xml version="1.0" encoding="utf-8"?

>
<!--
For more information on how to configure your ASP.NET application, please visi
t
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go
.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile
.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, Publ
icKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<!--<add name="FCHRMSConnectionString" connectionString="Data Source=.
\sqlexpress;Initial Catalog=GHHRMS;user id=sa;password=admins" providerName="Sys
tem.Data.SqlClient"/>-->
<add name="FCHRMSConnectionString" connectionString="Data Source=.\sqlexpre
ss;Initial Catalog=GHHRMS;user id=sa;password=admins" providerName="System.Data.
SqlClient"/>
<!--<add name="FCHRMSConnectionString" connectionString="Data Source=.\SQLEX
PRESS;Initial Catalog=FCHRMS;user id=sa;password=admins" providerName="System.Da
ta.SqlClient" />-->
</connectionStrings>
<system.web>
<compilation targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
<pages>
<namespaces>
<add namespace="System.Web.Optimization" />
<add namespace="Microsoft.AspNet.Identity" />
</namespaces>
<controls>
<add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Mi
crosoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" />
</controls>
</pages>
<membership>
<providers>
<!--
ASP.NET Membership is disabled in this template. Please visit the
following link http://go.microsoft.com/fwlink/?LinkId=301889 to learn about the
ASP.NET Membership support in this template
-->
<clear />
</providers>
</membership>
<profile>
<providers>
<!--
ASP.NET Membership Profile is disabled in this template. Please vi
sit the following link http://go.microsoft.com/fwlink/?LinkId=301889 to learn ab
out the ASP.NET Membership support in this template
-->
<clear />
</providers>
</profile>
<roleManager>
<!--
ASP.NET Membership Role is disabled in this template. Please vis
it the following link http://go.microsoft.com/fwlink/?LinkId=301889 to learn abo
ut the ASP.NET Membership support in this template
-->
<providers>
<clear />
</providers>
</roleManager>
<!--
If you are deploying to a cloud environment that has multiple web se
rver instances,
you should change session state mode from "InProc" to "Custom". In a
ddition,
change the connection string named "DefaultConnection" to connect to
an instance
of SQL Server (including SQL Azure and SQL Compact) instead of to S
QL Server Express.
-->
<sessionState mode="InProc" customProvider="DefaultSessionProvider">
<providers>
<add name="DefaultSessionProvider" type="System.Web.Providers.DefaultSes
sionStateProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, Publi
cKeyToken=31bf3856ad364e35" connectionStringName="MyConnString" />
</providers>
</sessionState>
<authentication mode="Forms">
<forms defaultUrl="~/Default.aspx" loginUrl="~/Account/Login.aspx" sliding
Expiration="true" timeout="2880"></forms>
</authentication>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<add name="ReportViewerWebControlHandler" preCondition="integratedMode" ve
rb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebF
orms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neu
tral, PublicKeyToken=89845dcd8080cc91" />
</handlers>
</system.webServer>
<!--<applicationSettings>
<Leave_Request.My.MySettings>
<setting name="Myconnection" serializeAs="String">
<value>Data Source=FCLP000142\SQLEXPRESS;Database=FCHRMS;user id=sa;pass
word=12345</value>
</setting>
</Leave_Request.My.MySettings>
</applicationSettings>-->
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="WebGrease" culture="neutral" publicKeyToken="31b
f3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.1423
4" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbCon
nectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.S
qlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>

You might also like