博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ClientScript.GetCallbackEventReference几个参数的使用实例
阅读量:4954 次
发布时间:2019-06-12

本文共 1464 字,大约阅读时间需要 4 分钟。

 

<%
@ Page Language
=
"
C#
"
 AutoEventWireup
=
"
true
"
 CodeBehind
=
"
WebForm3.aspx.cs
"
 Inherits
=
"
Cl_WebComTest.WebForm3
"
 
%>
<!
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
></
title
>
    
<
script 
type
="text/javascript"
>
        
function
 fun_callbk(msg,context) {
            
<%=
this
.ClientScript.GetCallbackEventReference(
this
,
"
msg
"
,
"
showMsg
"
,
"
context
"
)
%>
        }
        
function
 showMsg(rValue,context) {
            alert(rValue);
            alert(context.UnitText);
        }
    
    
</
script
>
</
head
>
<
body
>
    
<
form 
id
="form1"
 runat
="server"
>
    
<
div
>
        
<
div 
style
="cursor:hand;background-color:#ededed;"
 onclick
="var context=new Object;context.UnitText = '个';fun_callbk('大家好',context)"
>
click me
</
div
>
    
</
div
>
    
</
form
>
</
body
>
</
html
>
using
 System;
using
 System.Collections.Generic;
using
 System.Linq;
using
 System.Web;
using
 System.Web.UI;
using
 System.Web.UI.WebControls;
namespace
 Cl_WebComTest
{
    
public
 
partial
 
class
 WebForm3 : System.Web.UI.Page, ICallbackEventHandler
    {
        
string
 myStr 
=
 
string
.Empty;
        
public
 
void
 RaiseCallbackEvent(
string
 arg)
        {
            myStr 
=
 arg 
+
 
"
hello
"
;
//
还是简单的写,将客户端传来的值赋给咱新声明的变量
            
//
加一个hello,是为了验证数据的确是有服务端处理后返回的
        }
        
public
 
string
 GetCallbackResult()
        {
            
return
 myStr;
//
将结果返回客户端
        }
        
protected
 
void
 Page_Load(
object
 sender, EventArgs e)
        {
        }
    }
}

 

转载于:https://www.cnblogs.com/zhuawang/archive/2011/04/25/2027646.html

你可能感兴趣的文章
初学差分约束
查看>>
HEVC编码学习(一)HM配置
查看>>
通过Spark SQL关联查询两个HDFS上的文件操作
查看>>
DataTable和 DataRow的 区别与联系
查看>>
检索COM 类工厂中CLSID 为 {00024500-0000-0000-C000-000000000046}的组件时失败
查看>>
mysql数据库中数据类型
查看>>
Fireworks基本使用
查看>>
两台电脑间的消息传输
查看>>
Linux 标准 I/O 库
查看>>
.net Tuple特性
查看>>
Java基础常见英语词汇
查看>>
iOS并发编程笔记【转】
查看>>
泛型 T的定义<1>
查看>>
thinkphp dispaly和fetch的区别
查看>>
08号团队-团队任务5:项目总结会
查看>>
mybatis 插入数据 在没有commit时 获取主键id
查看>>
SQL2005 删除空白行null
查看>>
lightoj 1030 概率dp
查看>>
重新注册.NET
查看>>
Java 内存溢出(java.lang.OutOfMemoryError)的常见情况和处理方式总结
查看>>