电子 我有点挣扎以下条件。我已经在我的网页中实现了ICallBackEventHandler,一切运行顺利,除了后端的返回值对于javascript函数是不可读的。在控制台中,post显示正确的返回值,但函数的参数始终为空。
public partial class Intro : System.Web.UI.Page, System.Web.UI.ICallbackEventHandler
{
private string eventType = String.Empty;
protected void Page_Load(object sender, EventArgs e)
{
//ICallBack event handler
ClientScriptManager cm = Page.ClientScript;
string cbReference = cm.GetCallbackEventReference(this, "arg", "HandleResult", "");
string cbScript = "function RaiseEvent(arg){" + cbReference + ";}";
cm.RegisterClientScriptBlock(this.GetType(), "RaiseEvent", cbScript, true);
//End of ICallBack event handler
}
}
public void RaiseCallbackEvent(string eventArgument)
{
eventType = eventArgument;
}
public string GetCallbackResult()
{
return "simple";
}
然后在前端我有以下场景:我使用以下方法点击按钮触发事件:RaiseEvent("start")
我正在使用此函数处理结果:
function HandleResult(arg) {
alert(arg); // HERE THE ARGUMENT IS ALWAYS NULL OR EMPTY !!!
}
请帮我找出为什么这不正常运行以及为什么我无法访问返回参数的值。提前谢谢。
答案 0 :(得分:0)
这通常是由于没有使用Page.IsPostBack
引起的protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
//ICallBack event handler
ClientScriptManager cm = Page.ClientScript;
string cbReference = cm.GetCallbackEventReference(this, "arg", "HandleResult", "");
string cbScript = "function RaiseEvent(arg){" + cbReference + ";}";
cm.RegisterClientScriptBlock(this.GetType(), "RaiseEvent", cbScript, true);
//End of ICallBack event handler
}
}