如何在提交按钮单击后关闭窗口

如何在提交按钮单击后关闭窗口

本文介绍了如何在提交按钮单击后关闭窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在提交按钮后点击窗口并重定向到TIF.aspx页面

======================== ================================================== =

亲爱的朋友们,

我有一个弹出页面窗口,我有两个文本框和提交按钮。

当我点击提交时按钮,此窗口必须关闭并重定向到TIF.aspx页面。



这是我的代码。



How to close window after submit button click and redirect to TIF.aspx page
===========================================================================
Dear Frnds,
I have a popup page window, in this i have two textboxes and submit button.
When i click on submit button, this window must be closed and redirect to TIF.aspx page.

This is my code.

ScriptManager.RegisterStartupScript(this, this.GetType(), "RunCode", "javascript:alert('Request Successfully Updated Successfully');
document.location.href='TIF.aspx';", true);



谢谢。


Thanks.

推荐答案

Response.Write("<script type='text/javascript'>");
Response.Write("alert('Request Updated Successfully');");
Response.Write("document.location.href='TIF.aspx';");
Response.Write("</script>");



问候......:笑:


Regards..:laugh:


window.opener.location.href = 'http://www.google.com';



要关闭当前窗口/弹出窗口,您可以使用




To close the current window/popup you can use

window.close();



这篇关于如何在提交按钮单击后关闭窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 16:50