zoukankan      html  css  js  c++  java
  • App_Data 目录中的数据库位置指定了一个本地 SQL Server

    <configuration>

      <system.web>
        <compilation debug="true" targetFramework="4.5.2"/>
        <httpRuntime targetFramework="4.5.2"/>

        <membership defaultProvider="DefaultConnectionProvider">
        <providers>
        <add name="DefaultConnectionProvider" connectionStringName="DefaultConnection" enablePasswordRetrieval="false"
        requiresQuestionAndAnswer="true" requiresUniqueEmail="true" passwordFormat="Hashed"
        type="System.Web.Security.SqlMembershipProvider"/>
        </providers>
        </membership>
      </system.web>

      <connectionStrings>
        <add name="DefaultConnection"
        connectionString="Data Source=DESKTOP-KBU; Initial Catalog=wubook;&#xD;&#xA; Integrated Security=True"
        providerName="System.Data.SqlClient"/>

      </connectionStrings>

    </configuration>

  • 相关阅读:
    webservice
    AppDomain (转)
    Apache和Nginx防盗链的几种配置方法
    优化PHP代码的40条建议
    file_get_contents无法请求https连接的解决方法
    PHP SPL
    Ubuntu 查看系统信息
    PHP导出Excel
    mysql集群
    配置yum源的两种方法
  • 原文地址:https://www.cnblogs.com/yunqie/p/6202275.html
Copyright © 2011-2022 走看看