刷新页面并打开新的新窗口

时间:2014-11-06 23:51:07

标签: javascript c# code-behind

我有一个页面显示灯箱内的一些内容,在这个内容中有一个Button(btnAccept)来确认。我想从codeBehind(c#)刷新页面并打开一个新窗口(或其他方式)。我将不胜感激。

这是我到目前为止所尝试的:

第一次尝试:我可以打开一个新窗口,但我可以刷新页面

  protected void btnAccept_Click(object sender, EventArgs e)
    {
    //to open the new tab
    Response.Redirect(URL, true); 
    //to refresh the page
    Page.Response.Redirect(HttpContext.Current.Request.Url.ToString(), true);

    }

第二次尝试:我可以打开一个新窗口,但我可以刷新页面

  protected void btnAccept_Click(object sender, EventArgs e)
    {
    //to open the new tab
    ScriptManager.RegisterStartupScript(Page, typeof(Page), "OpenWindow", "window.open('URL');", true);

    //to refresh the page
    Page.Response.Redirect(HttpContext.Current.Request.Url.ToString(), true);

    }

如果我更改订单,我将刷新页面但不会打开新页面

1 个答案:

答案 0 :(得分:0)

所以,我的意思是这样做:

 public partial class WebForm1 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        btn.Text = "Refreshed";
        if (Request.Params["btnPressed"] != null && Request.Params["btnPressed"] == "true")
        {
            ScriptManager.RegisterStartupScript(Page, typeof(Page), "OpenWindow", "window.open('MyPage.aspx');", true);
        }
    }

    protected void btn_Click(object sender, EventArgs e)
    {

        btn.Text = "Not Refreshed";
        lbl.Text = "Not Refreshed";
        System.Threading.Thread.Sleep(1000);
        ////to refresh the page
        Page.Response.Redirect(HttpContext.Current.Request.Url.ToString()+"?btnPressed=true", true);
    }
}