引入Ext.Net的步骤


1:增加Ext.net的引用;有三个:Ext.Net.dll  Ext.Net.Utilities.dll  Newtonsoft.Json.dll    (可以直接在工具箱里直接增加Ext.net.dll它就会
自动把那三个引用的)

2: Web.config修改

<web>
    <httpModules>
  
      <add name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net" />
   
    </httpModules>
</web>

3:aspx页的运用要注意两个地方:

  <%@ Register assembly="Ext.Net" namespace="Ext.Net" tagprefix="ext" %>

  <ext:ResourceManager ID="ResourceManager1" runat="server" />


4:cs页要引入命名空间:using Ext.Net;

原文地址:https://www.cnblogs.com/wujy/p/2350419.html