zoukankan      html  css  js  c++  java
  • 第一个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>
  • 相关阅读:
    session 、cookie、token的区别
    翻译-In-Stream Big Data Processing 流式大数据处理
    一致性hash算法
    HA 部署wordpress
    HA 高可用mysql集群
    JVM内存监视手段和内存溢出解决方案
    vmware linux NAT CON
    spring SOA architecture
    思路
    cookie和session得区别
  • 原文地址:https://www.cnblogs.com/guardianf/p/2584030.html
Copyright © 2011-2022 走看看