C#:aspx中写showModalDialog中传了个参数 后台cs怎么接收
前台aspx:<ahref="javascript:showModalDialog('详情页.aspx',<%#Eval("user_code")%>);window.l...
前台aspx: <a href="javascript: showModalDialog('详情页.aspx',<%# Eval("user_code") %>);window.location.reload()"> <%# Eval("user_code") %></a> 传了一个参数Eval("user_code")
后台cs怎么接收这个user_code
我写了 string user_code = Request.QueryString["user_code"].ToString(); 报错:未将对象引用设置到对象的实例。
我写了string user_code = window.dialogArguments; 报错 找不到window
我写了string user_code = dialogArguments; 报错 找不到dialogArguments;
愁死我了…… 展开
后台cs怎么接收这个user_code
我写了 string user_code = Request.QueryString["user_code"].ToString(); 报错:未将对象引用设置到对象的实例。
我写了string user_code = window.dialogArguments; 报错 找不到window
我写了string user_code = dialogArguments; 报错 找不到dialogArguments;
愁死我了…… 展开
展开全部
在设置 详情页.aspx 的时候 后面加个变量 详情页.aspx?id=<%# Eval("user_code") %> 整个传过去 然后 后string user_code = Request.QueryString["user_code"].ToString();就可以接收了
更多追问追答
追问
这句话我就是在详情页.aspx中写的,我用的是showModalDialog这个函数写的。这个函数传参的用法就是 (XXX.aspx,参数) 这样写
追答
)“>点击 你直接这样写就可以了。然后在详情页.aspx的地址栏中会多出这么一截 ?user_code=)“
然后直接就能拿到 string user_code = Request.QueryString["user_code"].ToString();
不需要再写个showModalDialog方法的
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2016-02-16 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
C#中aspx中写showModalDialog中传了个参数 后台cs接收方法:
前台js写法:
function openwindow(url, iWidth, parameter, iHeight) {
var iTop = (window.screen.availHeight - 30 - iHeight) / 2; //获得窗口的垂直位置; var iLeft = (window.screen.availWidth - 10 - iWidth) / 2; //获得窗口的水平位置; var ret = window.showModalDialog(url, parameter, 'dialogHeight:' + iHeight + 'px;dialogWidth:' + iWidth + 'px;dialogTop:' + iTop + 'px;dialogLeft:' + iLeft + 'px;status:no;scroll:no;');
if (ret == undefined) { return; }
if (ret.DANWMCH != undefined) { document.getElementById("danwmch").value = ret.DANWMCH;
}
if (ret.DANWBM != undefined) { document.getElementById("ctl00_ContentPlaceHolder1_chumrid").value = ret.DANWBM;
}
}
后台cs接收:
protected void TPCSDataGrid1_ItemCommand(object source, DataGridCommandEventArgs e) { string jiaoYShBM = e.Item.Cells[0].Text; string jiaoYShMC = e.Item.Cells[1].Text; string operate = Request.QueryString["operate"].ToString(); if (e.CommandName == "Select") //选择赋值 { ScriptManager.RegisterStartupScript(this, this.GetType(), "ss", "setPValue('" + jiaoYShMC + "','" + jiaoYShBM + "');", true); } }
前台js写法:
function openwindow(url, iWidth, parameter, iHeight) {
var iTop = (window.screen.availHeight - 30 - iHeight) / 2; //获得窗口的垂直位置; var iLeft = (window.screen.availWidth - 10 - iWidth) / 2; //获得窗口的水平位置; var ret = window.showModalDialog(url, parameter, 'dialogHeight:' + iHeight + 'px;dialogWidth:' + iWidth + 'px;dialogTop:' + iTop + 'px;dialogLeft:' + iLeft + 'px;status:no;scroll:no;');
if (ret == undefined) { return; }
if (ret.DANWMCH != undefined) { document.getElementById("danwmch").value = ret.DANWMCH;
}
if (ret.DANWBM != undefined) { document.getElementById("ctl00_ContentPlaceHolder1_chumrid").value = ret.DANWBM;
}
}
后台cs接收:
protected void TPCSDataGrid1_ItemCommand(object source, DataGridCommandEventArgs e) { string jiaoYShBM = e.Item.Cells[0].Text; string jiaoYShMC = e.Item.Cells[1].Text; string operate = Request.QueryString["operate"].ToString(); if (e.CommandName == "Select") //选择赋值 { ScriptManager.RegisterStartupScript(this, this.GetType(), "ss", "setPValue('" + jiaoYShMC + "','" + jiaoYShBM + "');", true); } }
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询