我正在使用 ASP.net 2012。(C# AS CODE BEHIND)
我有一个父窗口 (ParentMain.aspx),我能够使用 aspx.cs 上的以下脚本从父窗口打开一个新窗口 (SampleChild1.aspx):
string strScript = string.Format("window.open('/Sample.UI/SampleChild1.aspx','window','toolbar=no,hotkeys=no,location=no,directories=no,menubar=no,scrollbars=是的,状态=1,可调整大小=0,宽度=600,高度=500');"); ScriptManager.RegisterStartupScript(this, this.GetType(), "nothing", strScript, true);
打开 SampleChild1.aspx 后,现在我打开了两个窗口 1) ParentMain.aspx 2) SampleChild1.aspx 每当我单击 samplechild1.aspx 链接时,它都会打开 samplechild1 窗口。没有问题。
我希望以下流程起作用。从 samplechild1.aspx,我必须从 aspx 页面打开 samplechild2.aspx,这个 samplechild2.aspx 不应该作为另一个新窗口或在 samplechild1.aspx 顶部打开,它应该在 ParentMain.aspx 页面的顶部打开
请告诉如何在 ParentMain.aspx 上打开 samplechild1.aspx。
请尽快提供解决方案。
谢谢,UTD