⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 web.config

📁 ASP.NET2.0(C#篇)经典教程的源码...本源码很好的实现了购物车....编码规范和类的设计具有很好的借鉴性!
💻 CONFIG
字号:
<?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\Microsft.Net\Frameworks\v2.x\Config -->
<configuration>
  <!--
    Mode defines certain feature availability:
      Full: No restrictions
      Real: Runs as if a real site, without the view code, download and user/role view links 
  -->
  <appSettings>
    <add key="mode" value="Full" />
  </appSettings>
 
	<!--
		define the connection string to the database
	-->
  <connectionStrings>
     <add name="WroxUnited"
     	connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|WroxUnited.mdf;Integrated Security=True;User Instance=True"
     	providerName="System.Data.SqlClient" />
  </connectionStrings>

  <system.web>
    
    <httpModules>
      <add name="Page" type="Wrox.Web.GlobalEvents.ThemeModule" />
    </httpModules>

    <!-- 
            Set compilation debug="true" to insert debugging symbols into the compiled page.
            Because this affects performance, set this value to true only during development.
        -->
    <compilation debug="true">
    </compilation>
    <!--
			Set forms authentication and define the login page
		-->
    <authentication mode="Forms">
      <forms loginUrl="Default.aspx"></forms>
    </authentication>
    <!--
			Enable the role manager
			This controls access to pages and the visibility of certain menu items
		-->
    <roleManager enabled="true"/>
    <anonymousIdentification enabled="true"/>
    <!--
            The <customErrors> section enables configuration of what to do if/when an unhandled
            error occurs during the execution of a request.  Specifically, it enables developers
            to configure html error pages to be displayed in place of a error stack trace.
        -->

		<customErrors mode="RemoteOnly">
      <error statusCode="404" redirect="missingPage.aspx"/>
		</customErrors>

    <!--
			Redefine the Site Map Provider, to add the security trimming attribute,
			which is off by default
		-->
    <siteMap defaultProvider="AspXmlSiteMapProvider" enabled="true">
      <providers>
        <clear/>
        <add name="AspXmlSiteMapProvider" type="System.Web.XmlSiteMapProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
          siteMapFile="web.sitemap" securityTrimmingEnabled="true"/>
      </providers>
    </siteMap>

    <!--
			Define the user profile properties
		-->
    <profile enabled="true">
      <properties>
        <add name="MemberName"/>
        <add name="Name"/>
        <add name="Address"/>
        <add name="City"/>
        <add name="County"/>
        <add name="PostCode"/>
        <add name="Country"/>
        <add name="Mailings" type="System.Boolean"/>
        <add name="Email"/>
        <add name="Theme"/>
        <add name="Cart" serializeAs="Binary" type="Wrox.Commerce.ShoppingCart" allowAnonymous="true"/>
      </properties>
    </profile>

  </system.web>

  <system.net>
    <mailSettings>
      <!-- these settings define the mail server settings
        from: the user name from which the email is sent - this is the application that is sending the message
        host: the name of your mail server
        userName: the name the application will use to log into the mail server
        password: the password for the above user name
      -->
      <smtp from="admin@your-domain.com">
        <network host="your-mail-server-name"
                 userName="your-user-name"
                 password="your-password" />
      </smtp> 
    </mailSettings>
  </system.net>

</configuration>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -