我正在使用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 ,滚动条=是,状态= 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