html5中文学习网

您的位置: 首页 > 网络编程 > ASP.NET » 正文

续上文:由于16K的限制,只能再接一节了。_.NET教程_编程技术

[ ] 已经帮助:人解决问题
 <processModel
            enable="true"
            timeout="infinite"
            idleTimeout="infinite"
            shutdownTimeout="0:00:05"
            requestLimit="infinite"
            requestQueueLimit="5000"
            memoryLimit="80"
            webGarden="false"
            cpuMask="0xffffffff"
            userName=""
            password=""
            logLevel="errors"
            clientConnectedCheck="0:00:05"
        />

        <webControls
            clientScriptsLocation="/_aspx/{0}/script/"
        />        

            <clientTarget>
                <add alias="ie5" userAgent="Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0)" />
                <add alias="ie4" userAgent="Mozilla/4.0 (compatible; MSIE 4.0; Windows NT 4.0)" />
                <add alias="uplevel" userAgent="Mozilla/4.0 (compatible; MSIE 4.0; Windows NT 4.0)" />
                <add alias="downlevel" userAgent="Unknown" />
            </clientTarget>

        <browserCaps>
            <result type="System.Web.HttpBrowserCapabilities" />
            <use var="HTTP_USER_AGENT" />
        
            browser=Unknown
            version=0.0
            majorversion=0
            minorversion=0
            frames=false
            tables=false
            cookies=false
            backgroundsounds=false
            vbscript=false
            javascript=false
            javaapplets=false
            activexcontrols=false
            win16=false
            win32=false
            beta=false
            ak=false
            sk=false
            aol=false
            crawler=false
            cdf=false
            gold=false
            authenticodeupdate=false
            tagwriter=System.Web.UI.Html32TextWriter
            ecmascriptversion=0.0
            msdomversion=0.0
            w3cdomversion=0.0
            platform=Unknown
            clrVersion=none

            <filter>
                <case match="COM/+|/.NET CLR (?'clrVersion'[0-9/.]*)">
                    clrVersion=${clrVersion}
                </case>
            </filter>

            <filter>
                <case match="Windows 95|Win95">
                    platform=Win95
                </case>
                <case match="Windows NT|WinNT">
                    platform=WinNT
                </case>
                <case match="Windows 3.1|Win16">
                    platform=Win16
                </case>
                <case match="Windows CE|WinCE">
                    platform=WinCE
                </case>
                <case match="Mac_68000|Macintosh.*68K">
                    platform=Mac68K
                </case>
                <case match="Mac_PowerPC|Macintosh.*PPC">
                    platform=MacPPC
                </case>
            </filter>

            <filter>
                <case match="16bit|Windows 3.1|Win16">
                    win16=true
                </case>
                <case match="Windows 95|Win95|Windows NT|WinNT">
                    win32=true
                </case>
            </filter>


            <filter>

                <case match="^Mozilla[^(]*/(compatible; MSIE (?'version'(?'major'/d+)(?'minor'/./d+)(?'letters'/w*))(?'extra'.*)">
            
                    browser=IE
                    version=${version}
                    majorversion=${major}
                    minorversion=${minor}
                
                    <case match="[5-9]/." with="${version}">
                        frames=true
                        tables=true
                        cookies=true
                        backgroundsounds=true
                        vbscript=true
                        javascript=true
                        javaapplets=true
                        activexcontrols=true
                        tagwriter=System.Web.UI.HtmlTextWriter
                        ecmascriptversion=1.2
                        msdomversion=${major}${minor}
                        w3cdomversion=1.0
                    
                        <filter with="${letters}" match="^b">
                            beta=true
                        </filter>
                    </case>
                
                    <case match="^4/." with="${version}">
                        frames=true
                        tables=true
                        cookies=true
                        backgroundsounds=true
                        vbscript=true
                        javascript=true
                        javaapplets=true
                        activexcontrols=true
                        tagwriter=System.Web.UI.HtmlTextWriter
                        ecmascriptversion=1.2
                        msdomversion=4.0
                        w3cdomversion=1.0
                        cdf=true
                    
                        <filter with="${letters}" match="^b">
                            beta=true
                        </filter>
                    
                        <filter with="${extra}" match="Crawler">
                            crawler=true
                        </filter>
                    </case>
                
                    <case match="^3/." with="${version}">
                        frames=true
                        tables=true
                        cookies=true
                        backgroundsounds=true
                        vbscript=true
                        javascript=true
                        javaapplets=true
                        activexcontrols=true
                        ecmascriptversion=1.1
                    
                        <filter match="true" with="%{win16}">
                            activexcontrols=false
                        </filter>
                        <filter match="Mac68K" with="%{platform}">
                            vbscript=false
                        </filter>
                        <filter match="^B" with="${letters}">
                            beta=true
                        </filter>
                        <filter match="; AK;" with="${extra}">
                            ak=true
                        </filter>
                        <filter match="; SK;" with="${extra}">
                            sk=true
                        </filter>
                        <filter match="; Update a;" with="${extra}">
                            authenticodeupdate=true
                        </filter>
                        <filter match="; AOL" with="${extra}">
                            aol=true
                        </filter>
                    </case>
                
                    <case match="^2/." with="${version}">
                        tables=true
                        cookies=true
                        backgroundsounds=true
                        <case match="2/.5b" with="${version}">
                            beta=true
                        </case>
                    </case>
                
                    <case match="^1/.5" with="${version}">
                        tables=true
                        cookies=true
                    </case>

                </case>
            
                <case match="^Microsoft Pocket Internet Explorer/0.6">
                    browser=PIE
                    version=1.0
                    majorversion=1
                    minorversion=0
                    tables=true
                    backgroundsounds=true
                    platform=WinCE
                </case>

                <case match="^Mozilla[^(]*/(compatible; MSPIE (?'version'(?'major'/d+)(?'minor'/./d+)(?'letters'/w*))(?'extra'.*)">
                    browser=PIE
                    version=${version}
                    majorversion=${major}
                    minorversion=${minor}
                    tables=true
                    backgroundsounds=true
                </case>
            
                <case match="^Mozilla/(?'version'(?'major'/d+)(?'minor'/./d+)(?'letters'/w*))(?'extra'.*)">
                    browser=Netscape
                    version=${version}
                    majorversion=${major}
                    minorversion=${minor}
                
                    <filter match="^b" with="${letters}">
                       beta=true
                    </filter>
                
                    <filter match="Gold" with="${letters}">
                       gold=true
                    </filter>
                
                    <case match="^[2-9]/." with="${version}">
                        frames=true
                        tables=true
                        cookies=true
                        javascript=true
                        javaapplets=true
                        ecmascriptversion=1.1
                        w3cdomversion=1.0
                    </case>
                
                </case>
            
                <case match="Mozilla/2/.01 /(Compatible/) Oracle/(tm/) PowerBrowser/(tm/)/1/.0a">
                    browser=PowerBrowser
                    version=1.5
                    majorversion=1
                    minorversion=.5
                    frames=true
                    tables=true
                    cookies=true
                    vbscript=true
                    javascript=true
                    javaapplets=true
                    platform=Win95
                </case>
            
            </filter>

            <filter>
                <case match="Unknown" with="%{browser}">
                    type=Unknown
                </case>
                <case>
                    type=%{browser}%{majorversion}
                </case>
            </filter>

        </browserCaps>

        <webServices>
            <protocols>
              <add name="HttpSoap"/>
              <add name="HttpPost"/>
              <add name="HttpGet"/>
              <add name="Documentation"/>
            </protocols>
            <soapExtensionTypes>
            </soapExtensionTypes>
            <soapExtensionReflectorTypes>
            </soapExtensionReflectorTypes>
            <soapExtensionImporterTypes>
            </soapExtensionImporterTypes>
            <wsdlHelpGenerator href="DefaultWsdlHelpGenerator.aspx" />
            <discoveryReferenceTypes>
            </discoveryReferenceTypes>
            <serviceDescriptionFormatExtensionTypes>
            </serviceDescriptionFormatExtensionTypes>
        </webServices>
    </system.web>
    <runtime>
        <DeveloperInstallation> true </DeveloperInstallation>
        <BindingCompliance> 1 </BindingCompliance>
        <!--
        <FinalizeOnEEShutdown> 1 </FinalizeOnEEShutdown>
        <BreakOnEELoad> 1 </BreakOnEELoad>
        -->
    </runtime>
</configuration>
aQhHTML5中文学习网 - HTML5先行者学习网
aQhHTML5中文学习网 - HTML5先行者学习网
(责任编辑:)
推荐书籍
推荐资讯
关于HTML5先行者 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 人才招聘 - 帮助