在我的应用程序中,用户将填写某个页面,之后,他将数据保存到数据库。将数据保存到数据库后,他将需要打印数据并刷新页面以接受新输入。我做了以下事情:
ClientScript.RegisterStartupScript(this.GetType(), "onclick", "<script language=javascript>window.open('PrintHelperDocument.aspx','PrintMe','height=500px,width=1000px,scrollbars=1');</script>");
Response.Redirect("BondData.aspx");
如果我这样做,则不打开打印页面,只刷新当前页面。如何打开新页面并同时刷新当前页面?