Ajax 之 - Ajax.NET Professional

A quick guide how to start

Because I could not write a documentation I will show you here how to start:

  • Download the latest Ajax.NET Professional files from www.schwarz-interactive.de
    (下载最新版的Ajax.NET Professional )
  • Add a reference to the AjaxPro.dll (for the .NET 2.0 Framework use AjaxPro.2.dll)
    (添加工程引用 AjaxPro.dll )
  • Add following lines to your web.config:
    (在Web.config中添加配置 HttpHandlers)
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.web>
    <httpHandlers>
      <add verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro"/>
    </httpHandlers>

  [...]

  </system.web>
</configuration>
  • Now, you have to mark your .NET methods with an AjaxMethod attribute:
    (添加ajax Method到Page类方法中)
[AjaxPro.AjaxMethod]
public DateTime GetServerTime()
{
  return DateTime.Now;
}
  • To use the .NET method on the client-side JavaScript you have to register the methods, this will be done to register a complete class to Ajax.NET:
    (同时在Page_Load方法中添加相应的注册客户端脚本方法)
namespace MyDemo
{
  public class _Default
  {
    protected void Page_Load(object sender, EventArgs e)
    {
      AjaxPro.Utility.RegisterTypeForAjax(typeof(_Default));
    }

    [AjaxPro.AjaxMethod]
    public DateTime GetServerTime()
    {
      return DateTime.Now;
    }
  }
}
  • If you start the web page two JavaScript includes are rendered to the HTML source.
  • To call a .NET method form the client-side JavaScript code you can use following syntax:
    (客户端访问Page类中写的Method,并处理返回值)
function getServerTime()
{
  MyDemo._Default.GetServerTime(getServerTime_callback);  // asynchronous call
}

// This method will be called after the method has been executed
// and the result has been sent to the client.

function getServerTime_callback(res)
{
  alert(res.value);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

科技互联人生

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值