zoukankan      html  css  js  c++  java
  • ajaxpro.2.dll 简单应用

    1.添加 ajaxpro.2.dll 引用

    2.web.config
    <system.web>

        
    <httpHandlers>
          
    <add verb="*" path="*.ashx" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2"/>
        
    </httpHandlers>
    </system.web>

    3.服务器端代码
    using System;
    using System.Data;
    using System.Configuration;
    using System.Collections;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;

    public partial class Ajax : System.Web.UI.Page
    {
        
    protected void Page_Load(object sender, EventArgs e)
        
    {
            AjaxPro.Utility.RegisterTypeForAjax(
    typeof(Ajax));
        }


        [AjaxPro.AjaxMethod]
        
    public string GetServerTimeString()
        
    {
            System.Threading.Thread.Sleep(
    2000);
            
    return DateTime.Now.ToString();
        }

    }

    4.客户端代码

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Ajax.aspx.cs" Inherits="Ajax" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        
    <title>ajaxpro.2.dll 简单应用</title>
        
    <script language="javascript" type="text/javascript">
           
    function ajax_callback(response)
           
    {             
                 document.getElementById(
    "div1").innerHTML = response.value;
           }

           
    function getServerTime()
           
    {
              document.getElementById(
    "div1").innerHTML = "请稍后,正在获取服务器时间..";
              Ajax.GetServerTimeString(ajax_callback);
              
           }

           
        
    </script>
    </head>
    <body>
        
    <form id="form1" runat="server">
        
    <div>
        
        
    <div id="div1">点击按钮获取服务器端时间</div>

        
    <input type="button" value=" click " onclick="javascript:getServerTime();" />
        
        
    </div>
        
    </form>
    </body>
    </html>
  • 相关阅读:
    关于ugc的一点思考
    Fenng早年间对推荐系统的思考
    对于软件开发的一些思考
    并发排序
    Standford CoreNLP使用
    做事情的方式
    JAVA! static的作用
    struts2学习笔记--使用Validator校验数据
    Struts2中的ModelDriven机制及其运用
    ValueStack与ContentMap (ActionContext.getContext().getValueStack().set())
  • 原文地址:https://www.cnblogs.com/yiki/p/795851.html
Copyright © 2011-2022 走看看