惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
C
Cisco Blogs
Latest news
Latest news
K
Kaspersky official blog
Attack and Defense Labs
Attack and Defense Labs
Cisco Talos Blog
Cisco Talos Blog
C
CERT Recently Published Vulnerability Notes
Webroot Blog
Webroot Blog
V2EX - 技术
V2EX - 技术
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
W
WeLiveSecurity
C
CXSECURITY Database RSS Feed - CXSecurity.com
PCI Perspectives
PCI Perspectives
S
Security @ Cisco Blogs
A
Arctic Wolf
Hacker News - Newest:
Hacker News - Newest: "LLM"
C
Check Point Blog
云风的 BLOG
云风的 BLOG
N
News | PayPal Newsroom
Microsoft Azure Blog
Microsoft Azure Blog
Security Latest
Security Latest
Cloudbric
Cloudbric
F
Fortinet All Blogs
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Application and Cybersecurity Blog
Application and Cybersecurity Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security Affairs
T
Threat Research - Cisco Blogs
L
LangChain Blog
Spread Privacy
Spread Privacy
T
Tor Project blog
Simon Willison's Weblog
Simon Willison's Weblog
Y
Y Combinator Blog
N
News and Events Feed by Topic
Blog — PlanetScale
Blog — PlanetScale
D
DataBreaches.Net
Google Online Security Blog
Google Online Security Blog
T
The Blog of Author Tim Ferriss
Forbes - Security
Forbes - Security
Security Archives - TechRepublic
Security Archives - TechRepublic
Martin Fowler
Martin Fowler
Vercel News
Vercel News
H
Heimdal Security Blog
P
Proofpoint News Feed
H
Help Net Security
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
人人都是产品经理
人人都是产品经理

博客园 - 冰峰剑心

android上传图片至服务器 使用LocationManager来获取移动设备所在的地理位置信息 android上传图片、视频、文件,服务端使用wcf接收 无法为类型 CuteEditor.Editor 授予有效的许可证。 DSO Framer _ WebForm 使用 url 编码 中文|c# js url传参中文乱码解决方案 - 冰峰剑心 项目管理有感之需求调研 WINDOWSXP文件夹右键属性没有“安全”选项卡的解决 sql语句中日期时间格式化查询 sql isnull函数 Aspnet_regsql 碰到的问题解决 发布前禁用调试 sql coalesce()函数、datalength()函数介绍及应用 subsnic实例! .NET2.0 验证控件常用的正则表达式- 站长分享站 SubSonic的sql插入 C#验证控件的使用方法 //生成六位随机数字 C#日期函数所有样式大全
config的配置
冰峰剑心 · 2007-11-18 · via 博客园 - 冰峰剑心

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

  <configSections>
    <section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" allowDefinition="MachineToApplication" restartOnExternalChanges="true"/>
  </configSections>
  <appSettings/>
  <connectionStrings>
    <add name="SuppliesConnectionString" connectionString="Data Source=.;Initial Catalog=Supplies;Integrated Security=True" providerName="System.Data.SqlClient"/>
    <add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\ASPNETDB.MDF;Integrated Security=True;User Instance=True"
     providerName="System.Data.SqlClient" />
  </connectionStrings>
  <SubSonicService defaultProvider="Supplies">
    <providers>
      <clear/>
      <add name="Supplies" type="SubSonic.SqlDataProvider, SubSonic" connectionStringName="SuppliesConnectionString" generatedNamespace="Supplies"/>
    </providers>
  </SubSonicService>
 
    <system.web>
      <!--成员资格提供-->
      <membership defaultProvider="hqsMemberShipProvider">
        <providers>
          <clear/>
          <add name="hqsMemberShipProvider"
           type="System.Web.Security.SqlMembershipProvider"
            connectionStringName="LocalSqlServer"
            requiresQuestionAndAnswer="true"
            enablePasswordRetrieval="true"
            passwordFormat="Clear"
            applicationName="/"
            requiresUniqueEmail="false"
            enablePasswordReset="true"
            minRequiredPasswordLength="5"
            minRequiredNonalphanumericCharacters="0"/>
        </providers>
      </membership>
     
        <!--
            设置 compilation debug="true" 将调试符号插入
            已编译的页面中。但由于这会
            影响性能,因此只在开发过程中将此值
            设置为 true。
        -->
      <roleManager enabled="true" />
      <compilation debug="true">
        <assemblies>
          <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
       
    <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/></assemblies>
      </compilation>
        <!--
            通过 <authentication> 节可以配置 ASP.NET 使用的
            安全身份验证模式,
            以标识传入的用户。
        -->
        <authentication mode="Forms">
            <forms name="Supplies" loginUrl="Login.aspx" defaultUrl="Default.aspx"
                cookieless="AutoDetect" />
        </authentication>
        <!--<authorization>
          <deny users="?"/>
        </authorization>-->
        <!--
            如果在执行请求的过程中出现未处理的错误,
            则通过 <customErrors> 节可以配置相应的处理步骤。具体说来,
            开发人员通过该节可以配置
            要显示的 html 错误页
            以代替错误堆栈跟踪。

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
    </system.web>
  <system.net>
    <mailSettings>
      <smtp from="hqsss123@tom.com">
      </smtp>
    </mailSettings>
  </system.net>
  <location path="Default.aspx">
   
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
  <location path="Register.aspx">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
  <location path="PasswordRecovery.aspx">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
</configuration>