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>
  • 相关阅读:
    MySql 常用时间函数
    ORM执行原生SQL语句
    如何获取该变量(对象)是属于什么类型的
    预解析
    全局变量与局部变量
    函数可以作为参数使用,如果一个函数作为参数,那么我们说这个参数(函数)可以叫回调函数。
    函数的自调用,没有名字,声明的同时直接调用
    return之后的代码不执行
    js冒泡排序
    switch-case case后比较是严格模式
  • 原文地址:https://www.cnblogs.com/cxd4321/p/1328897.html
Copyright © 2011-2022 走看看