首页 > 开发 > 综合 > 正文

续上文:由于16K的限制,只能再接一节了。

2024-07-21 02:16:40
字体:
来源:转载
供稿:网友
 <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>
  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表