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;

相关文章:

  • 2022-02-17
  • 2021-07-23
  • 2022-02-08
  • 2021-07-15
  • 2022-12-23
  • 2023-03-04
  • 2022-12-23
  • 2021-09-18
猜你喜欢
  • 2021-06-24
  • 2021-06-25
  • 2022-12-23
  • 2021-12-05
  • 2021-06-24
  • 2022-01-14
  • 2021-10-06
相关资源
相似解决方案