질문 초과
2281 단어 showModalDialog
a.aspx 페이지 코드:
function SetPlay() {
window.showModalDialog('SetAdvertisingTime.aspx?Rnd' + Math.random(), '', 'dialogWidth=300px;dialogHeight=180px;status=no;');
window.location.reload();
}
<input type="button" onclick="SetPlay()" class="button" value=" " />
a.aspx.cs 코드:
sb.Append("parent.parent.parent.parent.location.href='"+ Request.ApplicationPath + "/Default.aspx'");
이것은 당신의 프레임워크에 따라 로그인 페이지에 대한 상대적인 위치를 찾을 수 있습니다.
/// <summary>
/// Page_Load
/// </summary>
/// <param name="e"> </param>
protected override void OnPreLoad(EventArgs e)
{
// session
if (SessionOperate.getLoginName().Equals(""))
{
//Response.Write("<script>parent.location.href='"+Request.ApplicationPath + "/Default.aspx'</script>");
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append("<script>");
sb.Append("parent.parent.parent.parent.location.href='" + Request.ApplicationPath + "/Default.aspx'");
sb.Append("</script>");
Response.Write(sb.ToString());
Response.End();
}
}
b.aspx.cs 코드
/// <summary>
/// Page_Load
/// </summary>
/// <param name="e"> </param>
protected override void OnPreLoad(EventArgs e)
{
if (SessionOperate.getLoginName() == string.Empty)
{
Response.Write("<script>window.close();</script>");
return;
}
base.OnPreLoad(e);
}
/// <summary>
/// , , ,
/// , 。
/// </summary>
/// <param name="e"> </param>
protected override void OnInitComplete(EventArgs e)
{
}
이렇게 시간을 초과하면 로그인 페이지로 돌아갑니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
showModalDialog 모드 대화 상자부모 창에서 하위 창 열기 하위 창 코드 1. show Modal Dialog와 show Modeless Dialog는 어떻게 다릅니까?showModalDialog: 열려 있으면 항상 포커스를 입력합니다.대화 상자가...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.