ext.net1.3.0 Configuring application pool integration and Classic mode interchange

Source: Internet
Author: User

ext.net1.3.0 Configuring application pool integration and Classic mode interchange

There are two modes of application pool in IIS7, one is integration mode and the other is Classic mode.

When you publish an application to IIS , the application pool needs to be selected in the integrated managed pipeline mode and classic pipeline mode.

The configuration file for Classic mode is:

1 <system.web>2     <compilationDebug= "true"targetframework= "4.0"/>3     <customErrorsMode= "Off"/>4     <HttpRuntime/>5     <AuthenticationMode= "Forms">6       <Formsloginurl= "~/login.aspx"Timeout= "2880"/>7     </Authentication>8     <pages>9       <Controls>Ten         <AddAssembly= "Ext.net"namespace= "Ext.net"TagPrefix= "ext"/> One       </Controls> A     </pages> -     <httphandlers> -       <AddPath= "*/ext.axd"verb="*"type= "Ext.Net.ResourceHandler"Validate= "false"/> the     </httphandlers> -     <httpmodules> -       <Addname= "Directrequestmodule"type= "Ext.Net.DirectRequestModule, ext.net"/> -     </httpmodules> +   </system.web>

The configuration file for the Integrated mode is:

<system.web>    <compilationDebug= "true"targetframework= "4.0"/>    <customErrorsMode= "Off"/>    <HttpRuntime/>    <AuthenticationMode= "Forms">      <Formsloginurl= "~/login.aspx"Timeout= "2880"/>    </Authentication>    <pages>      <Controls>        <AddAssembly= "Ext.net"namespace= "Ext.net"TagPrefix= "ext"/>      </Controls>    </pages>  </system.web><system.webserver>     <handlers>      <AddPath= "*/ext.axd"verb="*"type= "Ext.Net.ResourceHandler"Validate= "false"name= "Myhandlers"/>    </handlers>    <Modules>      <Addname= "Directrequestmodule"type= "Ext.Net.DirectRequestModule, ext.net"/>    </Modules></system.webserver> 

This allows you to switch directly between the two modes.

ext.net1.3.0 Configuring application pool integration and Classic mode interchange

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.