• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

ASP.NET2.0实现无刷新客户端回调(2)

发布: 2007-6-30 18:56 | 作者: admin | 来源: | 查看: 15次 | 进入软件测试论坛讨论

领测软件测试网     
    第二种方法:在上面的方法中我们必须要在前台绑定后台,那么如果不绑定呢?我们这样做:
  
    直接把GetCallbackEventReference当做js函数中的一个实现内容,然后把这个js函数注册到客户端。
  
    前台TestPage代码:
  
  <%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestPage.ASPx.cs" Inherits="TestPage" %>
  <html>
  <head>
  <title>Untitled Page</title>
  <script type="text/JavaScript">
  function test()
  {
   var lb = document.getElementById("Select1");
   //取的那个下拉框
   var con = lb.options[lb.selectedIndex].text;
   //得到你选择的下拉框的文本再调用呢个CallTheServer,是一个由服务器端输出的js函数
   CallTheServer(con,');
  }
  function ReceiveServerData(rValue)
  {
   Results.innerHTML = rValue;
  }
  </script>
  </head>
  <body>
  <form id="form1" runat="server">
  <div>
  <select id="Select1">
  <option value=1 selected="selected">老鼠徒弟</option>
  <option value=2>吴旗娃师傅</option>
  </select>
  <br />
  <br />
  <input onclick="test()" value="从服务器返回下拉框文本" type=button>
  <br />
  <br />
  <span ID="Results"></span>
  <br />
  </div>
  </form>
  </body>
  </html>
  
    后台代码:
  
  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 TestPage : System.Web.UI.Page,System.Web.UI.ICallbackEventHandler
  {
   protected void Page_Load(object sender, EventArgs e)
   {
    String cbReference = Page.ClientScript.GetCallbackEventReference(this, "arg", "ReceiveServerData", "context");
    String callbackScript;
    callbackScript = "function CallTheServer(arg,context)" +"{ " + cbReference + "} ;";
    Page.ClientScript.ReGISterStartupScript(this.GetType(),"abcdefg",callbackScript, true);
    //第四个参数代表是不是要自动给着脚本加上<script type="text/Javascript"></script>标记,当然要加啊
   }
   public String RaiseCallbackEvent(String eventArgument)
   {
    return "你选择的是" + eventArgument;
   }
  }
  
    下面是执行结果:
  
  

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网