第一个ExtAspNet网页

首先先要配置asp.net网站的Web.Config

在<configuration>标签下添加如下两行:

1 <configSections>
2         <section name="ExtAspNet" type="ExtAspNet.ConfigSection,ExtAspNet"/>
3     </configSections>
4     <ExtAspNet Language="zh_CN" EnableAjax="true" Theme="blue"/>

其次在<system.web>标签下添加如下代码:

1 <pages>
2       <controls>
3         <add assembly="ExtAspNet" namespace="ExtAspNet" tagPrefix="ext"/>
4       </controls>
5     </pages>
6     
7     <httpModules>
8       <add name="ExtAspNetScriptModule" type="ExtAspNet.ScriptModule, ExtAspNet"/>
9     </httpModules>


然后在default页面下添加<ext:PageManager>标签(每页都需要)

View Code
 1 <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
 2 
 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 4 
 5 <html xmlns="http://www.w3.org/1999/xhtml" >
 6 <head runat="server">
 7     <title>无标题页</title>
 8 </head>
 9 <body>
10     <form id="form1" runat="server">
11     <ext:PageManager runat="server" />
12     
13     </form>
14 </body>
15 </html>
原文地址:https://www.cnblogs.com/guardianf/p/2584030.html