Web.config 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. 有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4. http://go.microsoft.com/fwlink/?LinkId=152368
  5. -->
  6. <configuration>
  7. <configSections>
  8. <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  9. <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  10. </configSections>
  11. <appSettings>
  12. <add key="webpages:Version" value="1.0.0.0" />
  13. <add key="ClientValidationEnabled" value="true" />
  14. <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  15. </appSettings>
  16. <system.web>
  17. <compilation debug="true" targetFramework="4.0" />
  18. <authentication mode="Forms">
  19. <forms loginUrl="~/Account/LogOn" timeout="2880" />
  20. </authentication>
  21. <pages>
  22. <namespaces>
  23. <add namespace="System.Web.Helpers" />
  24. <add namespace="System.Web.Mvc" />
  25. <add namespace="System.Web.Mvc.Ajax" />
  26. <add namespace="System.Web.Mvc.Html" />
  27. <add namespace="System.Web.Routing" />
  28. <add namespace="System.Web.WebPages" />
  29. </namespaces>
  30. </pages>
  31. <profile defaultProvider="DefaultProfileProvider">
  32. <providers>
  33. <add name="DefaultProfileProvider" type="System.Web.Providers.DefaultProfileProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" applicationName="/" />
  34. </providers>
  35. </profile>
  36. <membership defaultProvider="DefaultMembershipProvider">
  37. <providers>
  38. <add name="DefaultMembershipProvider" type="System.Web.Providers.DefaultMembershipProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
  39. </providers>
  40. </membership>
  41. <roleManager defaultProvider="DefaultRoleProvider">
  42. <providers>
  43. <add name="DefaultRoleProvider" type="System.Web.Providers.DefaultRoleProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" applicationName="/" />
  44. </providers>
  45. </roleManager>
  46. <!--
  47. If you are deploying to a cloud environment that has multiple web server instances,
  48. you should change session state mode from "InProc" to "Custom". In addition,
  49. change the connection string named "DefaultConnection" to connect to an instance
  50. of SQL Server (including SQL Azure and SQL Compact) instead of to SQL Server Express.
  51. -->
  52. <sessionState mode="InProc" customProvider="DefaultSessionProvider">
  53. <providers>
  54. <add name="DefaultSessionProvider" type="System.Web.Providers.DefaultSessionStateProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" />
  55. </providers>
  56. </sessionState>
  57. </system.web>
  58. <system.webServer>
  59. <validation validateIntegratedModeConfiguration="false" />
  60. <modules runAllManagedModulesForAllRequests="true" />
  61. </system.webServer>
  62. <runtime>
  63. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  64. <dependentAssembly>
  65. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  66. <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" />
  67. </dependentAssembly>
  68. </assemblyBinding>
  69. </runtime>
  70. <entityFramework>
  71. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  72. <parameters>
  73. <parameter value="v13.0" />
  74. </parameters>
  75. </defaultConnectionFactory>
  76. </entityFramework>
  77. <connectionStrings>
  78. <add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-WebS-20170425142625;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-WebS-20170425142625.mdf" />
  79. </connectionStrings>
  80. </configuration>