我创建了一个Error.aspx页面。我在Master页面中定义了Modal弹出窗口。我想打开这个Error.aspx页面作为global.ascx的模态弹出窗口。 有可能吗?
答案 0 :(得分:-1)
一旦我对弹出的会话丢失错误消息有相同要求,那么我做了什么,
有很多选项可以实现此功能,但我尝试在全局级别执行此操作,因为我的会话是用于登录(例如,请参阅下面的URL)。
然后,如果会话不可用,您可以这样检查。
Page.ClientScript.RegisterStartupScript(this.GetType(), "Window","window.alert('Show your message here.','');", true);
您也可以通过某种方式打开HTML / aspx弹出窗口。
我可能有一些语法错误,但你明白了......
一些有用的网址。
https://forums.asp.net/t/1082125.aspx?How+to+check+whether+a+session+exists+or+not+
https://forums.asp.net/t/1491997.aspx?Popup+window+and+Response+Redirect+
https://forums.asp.net/t/1082125.aspx?How+to+check+whether+a+session+exists+or+not+
https://www.codeproject.com/Questions/856696/Displaying-a-aspx-page-in-a-pop-up-window-on-buttn
How to make a popup in ASP.Net and pass information to it using a query string?