我有以下情况:
我的页面上有一个gridview:
page1.aspx
我在rad window中通过该网格视图打开另一个页面(page2.aspx
),然后通过page2.aspx
上的某个按钮打开最后一页(page3.aspx
) a rad window
也是。
所有这些步骤都是通过服务器端代码执行的:
protected void OpenNewWindow(string url, int width, int height, int mode)
{
RadWindow newWindow = new RadWindow();
newWindow.NavigateUrl = url;
newWindow.VisibleOnPageLoad = true;
newWindow.KeepInScreenBounds = true;
newWindow.Skin = "Metro";
if (width > 0)
{
newWindow.Width = width;
}
if (height > 0)
{
newWindow.Height = height;
}
newWindow.VisibleStatusbar = false;
if (mode == 0)
{
{
}
//newWindow.OnClientClose = "OnChildWindowClosed";
newWindow.DestroyOnClose = true;
newWindow.InitialBehaviors = WindowBehaviors.Maximize;
}
RadWindowManager1.Windows.Add(newWindow);
}
我想做的是:
点击我(page3.aspx
)上的特定按钮时,关闭它及其父page2.aspx
。
如何做到这一点(服务器端)?
我试试这个:但它关闭了孩子page3.aspx
我想关闭父page2.aspx
吗?!
protected void Button1_Click(object sender, EventArgs e)
{
((RadAjaxManager)this.Parent.FindControl("RadAjaxManager1")).ResponseScripts.Add("CloseModal();");
RadAjaxManager1.ResponseScripts.Add("CloseModal();");
}
答案 0 :(得分:8)
protected void Button1_Click(object sender, EventArgs e)
{
((RadAjaxManager)this.Parent.FindControl("RadAjaxManager1")).ResponseScripts.Add("CloseModal();");
RadAjaxManager1.ResponseScripts.Add("CloseModal();");
}
如果CloseModal()
事件正确触发,您应该可以在其中调用window.close()
。 RadWindows只存在于父窗口的上下文中,因此您仍然可以调用window.close()
来关闭每个打开的窗口。
编辑虽然有点偏离主题,但来自Telerik的this link会向您展示如何从RadWindow获取父窗口的句柄。然后你可以调用close方法客户端来关闭浏览器窗口(page1.aspx),这将关闭所有后续的RadWindows。
来自this link:
RadWindow和浏览器弹出窗口的主要区别在于,就像任何其他DHTML元素一样,RadWindow仅存在于创建它的页面的上下文中。它不能离开浏览器窗口的边界。
答案 1 :(得分:7)
您可以通过实现每个父级的接口来执行冒泡事件。我试图说明我的想法。
public interface IClosingParent
{
void Close();
}
public class PageA : System.Web.Page, IClosingParent
{
public void IClosingParent.Close()
{
//Code to close it or hide it
}
}
public class PageB : System.Web.Page, ClosingParent
{
public void IClosingParent.Close()
{
((IClosingParent)this.Parent).Close();
//Code to close it or hide it
}
}
public class PageC : System.Web.Page
{
protected void ButtonClose_Click(object sender, EventArgs e)
{
((IClosingParent)this.Parent).Close();
//Code to close it or hide it
}
}
包括您必须将RadWindow声明为父级。因此,在分层视图中,似乎是这样的:
PageA : IClosingParent | |-- PageB : IClosingParent | |-- PageC |-- ButtonClose
我认为您可以使用此解决方案管理您想要的结束流程,并随时随地进行更改。
答案 2 :(得分:2)
这可能听起来很质朴,但为什么不在关闭之前简单地执行要运行的服务器代码,然后向客户端返回一个bool参数,该参数允许它运行关闭窗口的if语句(客户端) )?
PS:我在算术上思考,我对服务器端C#没有多少经验。