彩票走势图

ASP.NET 提供的CaLLBack回调技术实现页面无刷新

转帖|其它|编辑:郝浩|2010-09-21 11:47:17.000|阅读 886 次

概述:本文主要解决ASP.NET 提供的CaLLBack回调技术实现页面无刷新的问题,希望对大家有帮助。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

  NET 2.0提供的CallBack技术通常用在自定义的控件内,这样可以实现某控件的自动回调技术,以下代码在VS2005中经过调试,可以直接运行。

Default.aspx 文件代码如下

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

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

<html xmlns="//www.w3.org/1999/xhtml" >
<head runat="server">
<title>CaLLBack回调技术实现页面无刷新</title>
</head>
<script language=javascript>...
function filldata()
...{
 var city=document.getElementById("TextBox1").value;
 //调用方法GetCallbackEventReference,获取服务器端返回的结果。语法如下:
  //第一个参数:表示处理客户端回调的服务器控件。该控件必须实现ICallbackEventHandler接口
//本例中的this表示调用回调方法的控件就是本页
  //第二个参数:从客户端脚本传递给服务器端的一个参数,应用在RaiseCallbackEvent方法中
  //第三个参数:一个客户端处理程序的名称,该处理程序接收服务器端事件的返回结果
  //第四个参数:启动回调之前在客户端计算的客户端脚本,又称脚本上下文。脚本的结果传回客户端事件处理程序
  <%=Page.ClientScript.GetCallbackEventReference(this,"city","filldll",null) %>
}
function filldll(strcity)
...{
  document.getElementById("DropDownList1").options.length=0;
  var indexofcity;
  var city;
  while(strcity.length>0)
  ...{
   indexofcity=strcity.indexOf(",");
   if(indexofcity>0)
   ...{
    city=strcity.substring(0,indexofcity);
    strcity=strcity.substring(indexofcity+1);
    document.getElementById("DropDownList1").add(new Option(city,city));
   }
   else
   ...{
    document.getElementById("DropDownList1").add(new Option(strcity,strcity));
    break;
   }
  };
}
</script>
<body>
  <form id="form1" runat="server"> <div>
  <table>
  <tr>
   <td colspan="2">
    使用回调技术实现局部刷新</td>
   </tr>
  <tr>
  <td style="width: 217px; height: 21px">
   输入城市的名称</td>
  <td style="width: 375px; height: 21px">
  <asp:TextBox ID="TextBox1" runat="server" Width="234px"></asp:TextBox></td>
  </tr>
  <tr>
  <td style="width: 217px">
  </td>
  <td style="width: 375px">
   <input id="Button1" type="button" value="查 询" onclick="filldata()"/></td>
  </tr>
  <tr>
  <td style="width: 217px">
   选择区域列表</td>
  <td style="width: 375px">
  <asp:DropDownList ID="DropDownList1" runat="server" Width="246px">
  </asp:DropDownList></td>
  </tr>
</table>

</div>
</form>
</body>
</html>

后台代码如下:

using System;
using System.Data;
using System.Configuration;
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 _Default : System.Web.UI.Page, ICallbackEventHandler
...{
  private string _data;

  ICallbackEventHandler 成员#region ICallbackEventHandler 成员

  public string GetCallbackResult() /**/////返回回调事件的执行结果
  ...{
   return _data;
  }

  public void RaiseCallbackEvent(string eventArgument) //执行回调事件
  ...{
  //eventArgument表示传递到事件处理程序的事件参数,一般用于服务器与客户端之间传递的数据参数
  switch (eventArgument)
  ...{
   case "北京":
   _data = "朝阳,海淀,东城,西城";
   break;
   case "上海":
   _data = "浦东,静安,徐汇,虹口";
   break;
  }
  }

  #endregion
}


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:网络转载

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP