在cs页面中用代码弹出showModalDialog窗口,如何传值给父窗口
我在CS代码中使用 ScriptManager.RegisterClientScriptBlock(UpdatePanel1, this.GetType(), "cy1", "window.showModalDialog('" + "../Pop-up-window/GoodsSize.aspx?GoodsID=" + HiddenFieldGoodsId.Value.Trim() + "');", true);弹出了一个showModalDialog窗口,但是我在CS代码中执行给父窗口传值时提示return window.dialogArguments.document.getElementById(id); 这个值为空。下面是从弹窗传值到父窗体的代码:
ScriptManager.RegisterClientScriptBlock(UpdatePanel1, this.GetType(), "cy1", "var parDocument=function $(id){ return window.dialogArguments.document.getElementById(id); };", true);
ScriptManager.RegisterClientScriptBlock(UpdatePanel1, this.GetType(), "cy2", "if(parDocument('ctl00_ContentPlaceHolder1_TextBoxQuantity')!=null){parDocument('ctl00_ContentPlaceHolder1_TextBoxQuantity').value = '" + quantity + "';};", true);
ScriptManager.RegisterClientScriptBlock(UpdatePanel1, this.GetType(), "cy0", "self.close();", true);
我估计是上面的弹窗代码没有把交窗口的相关属性传过来,但是我又不知道怎么在上面那个弹窗代码中加上 相关的属性代码。使父窗体能获取到用这个方法弹出的子窗体的值。
--------------------编程问答-------------------- ????????没有人回复?? --------------------编程问答--------------------
最好用jquery 和javascript 直接写 ajax。 这样比较容易调试, 和明白 每个步骤发生的序列关系。
scriptmanager 和 updatepanel 很容易混淆基本概念
补充:.NET技术 , ASP.NET