我正在从后面的 ASP.Net 代码打开一个 javascript ShowModalDialog,代码如下所述:-
string _timeSpentinMin="123";
Page page = HttpContext.Current.CurrentHandler as Page;
ScriptManager.RegisterStartupScript(page, page.GetType(), "OpenModalDialog", "<script type=text/javascript>window.showModalDialog('ClockPopUP.aspx', null, 'dialogWidth:290px;dialogHeight:270px;status:no'); </script>", false);
我还想将查询字符串传递给 Clock.aspx 并从 javascript 我这样做:-
function openmodalWinLunch() {
var variable1 = "Lunch";
window.showModalDialog("ClockPopUP.aspx?code=" + variable1, "dialogWidth:290px;dialogHeight:270px,");
}
我的问题是我们将如何从后面的 asp 代码中做同样的事情。请按照上面提到的更新我的 ASp.Net 代码以满足我的需求。我想使用 showmodalDialog 将字符串变量 _timespentinMin 从查询字符串传递到 Clock.aspx 页面。