1. 程式人生 > >AjaxPro2在Asp.net中的基本用法

AjaxPro2在Asp.net中的基本用法

1.      引用ajaxPro2.dll到你的工程中。

2.      在Web.config中新增配置

<httpHandlers>
       <add path="ajaxpro/*.ashx" verb="POST,GET" type="AjaxPro.AjaxHandlerFactory, AjaxPro.2"/>
   </httpHandlers>

3.      在程式中註冊Ajax

protected void Page_Load(object sender, EventArgs e)
    {
        AjaxPro.Utility.RegisterTypeForAjax(typeof
(filejob_DCFCS01));
    }

……
[AjaxPro.AjaxMethod]
    public string[] GetOldInfo(string No)
    {
            String [] strret=new string[5];
            ……
            Return strret;
        }

4.      在客戶端的呼叫

<asp:TextBox ID="tbxODANo" runat="server" CssClass="Input" MaxLength="7" Width="134px" onchange=”getInfo(this
);”></asp:TextBox>
<script type=”text/javascript”>
Function getInfo(oda)
{
        Var no=oda.value;
        filejob_DCFCS01. GetOldInfo(no,callback);//非同步方法
}

Function callback(res)
{
     If(res.error)
        Alert(“錯誤”);
     Else
    {
    Alert(Res.value[0]);
}

}

 

    可以把Ajax要操作的方法放到一個Ajax操作類裡

Public class
 AjaxMethod

{

  [Ajax.AjaxMethod]
  public static string[] GetOldInfo(string No)
    {
                  String [] strret=new string[5];
                  ……
                  Return strret;
          }

}


在呼叫時要註冊Ajax:

 AjaxPro.Utility.RegisterTypeForAjax(typeof(AjaxMethod));

 5.   AjaxPro方法返回DataSet

只能在同步ajax時才能返回DataSet 型別

Public class AjaxMethod
{
[Ajax.AjaxMethod]
 public static DataSet GetOldInfo(string No)
{
     ……
   Return ds;
}

}

在客戶端取DataSet資料:

Function getInfo()
{
 Var res= AjaxMethod. GetOldInfo(oda.value).value; //同步呼叫
 If(ds!=null)
{
  Var dt=ds.Tables[0];
Var rows=dt.Rows.length;
For(var i=0;i<rows;i++)
{
 Document.write(dt.Rows[i][dt.Columns[0].name]);
}

}

}