首页上一页 1 下一页尾页 1 条记录 1/1页
函数回调问题
发表在ASP.NET图书答疑
2009-05-06
是否精华
是
否
版块置顶:
是
否
ClientScriptManager m = Page.ClientScript;//客户端脚本管理对象
string str = m.GetCallbackEventReference(this, "args", "ReceiveOnlineData", "' '")
string strCallback = "function CallServer(args,context){ " + str + ";}";
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "CallServer", strCallback, true);
public string GetCallbackResult()//返回callback结果
{
return str;
}
public void RaiseCallbackEvent(string eventArgument)
请问这些语句,是否有关函数回调?函数回调具体是什么意思?执行步骤是什么?请赐教,谢谢啦