单击按钮时弹出关闭并重定向到不同的页面!

Posted

技术标签:

【中文标题】单击按钮时弹出关闭并重定向到不同的页面!【英文标题】:Popup close on button click and redirect to different page! 【发布时间】:2011-04-28 09:16:56 【问题描述】:

我有一个弹出窗口,在成功保存到数据库后显示。它显示“密码已成功保存”并且还有一个“确定”按钮。我希望在单击“确定”时关闭弹出窗口,并应将其重定向到登录页面。在这里使用我的代码,它会保存,显示弹出窗口,单击“确定”时,它会停留在同一页面上。请帮我解决这个问题!提前致谢!!

protected void btnOK_Click(object sender, EventArgs e)
        
    Response.Redirect(ApplicationData.URL_MERCHANT_SIGNUP_PAGE, false);
    Session.Remove("Info");


<table id="pnlPopup" runat="server" style="display:none">
    <tr>
        <td>
            <asp:Panel ID="Panel1" runat="server" CssClass="modalPopup">
                <table   class="warningPopup">
                    <tr>
                        <td>
                            <img src="images/warning_blue.gif"  />
                        </td>
                        <td colspan="2" align="left" style="padding-left: 75px; padding-top: 10px;">
                            Your password is succesfully been saved.
                        </td>
                    </tr>
                    <tr>
                        <td align="center" colspan="4">
                            <asp:Button id="btnOK" Text ="OK" runat = "server" OnClientClick="$find('mdlpop').hide(); return true;" onclick="btnOK_Click" />
                        </td>                            
                    </tr>
                </table>
            </asp:Panel>
        </td>
    </tr>
</table>

【问题讨论】:

【参考方案1】:

在这一行下断点并按 F5:-

Response.Redirect(ApplicationData.URL_MERCHANT_SIGNUP_PAGE, false);

你达到了吗?

如果是,请确保 ApplicationData.URL_MERCHANT_SIGNUP_PAGE 返回有效的 URL 字符串。

edit 然后我们需要查看更多代码,如果没有命中断点,那么按钮不会强制发布到服务器。如果你现在把这段标记代码去掉会怎样?

OnClientClick="$find('mdlpop').hide(); 返回真;"

【讨论】:

不,我没有到达那里。同一页面正在刷新。【参考方案2】:

点击按钮试试这个

this.Page.ClientScript.RegisterStartupScript(GetType(), "dd1", "<script>window.open('URL','_top','width=500,height=200,top=300,left=300,titlebar=no,scrollbars=1,directories=0,status=0,menubar=no,toolbar=no,resizable=yes','true');</script>");
                return;

【讨论】:

【参考方案3】:

这个 javascript 函数可以正常工作。我刚刚测试了:)

函数 GotoRegister() window.location = 'UserProfileNew.aspx'; 返回假;

【讨论】:

【参考方案4】:

ScriptManager.RegisterStartupScript(this, GetType(), "Success", "alert('数据添加成功');location.href='secondpage.aspx'", true);

【讨论】:

以上是关于单击按钮时弹出关闭并重定向到不同的页面!的主要内容,如果未能解决你的问题,请参考以下文章

如何关闭弹出窗口并重定向到Django View中的另一个页面?

更新数据库记录并重定向到不同页面的动态操作

如何关闭弹出窗口并将 url 重定向到父页面?

单击注销按钮终止会话并重定向到登录页面

如何使按钮单击更新数据库并重定向到 Django 中的视图?

iframe/Popup 重定向开启器窗口