1,128
99.9
Apr 04, 2011
As far as I know, this is not possible to do using Response.Redirect since it is on the server side. Your best bet would probably be to use JavaScript... but that will not work if the user has JavaScriptdisabled.
Good Luck!
50
50
21 days ago
hi
u try this one!!!!
<asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" />
-----------------------------------------------------------------------------------------------------------------------------
protected void btnSubmit_Click(object sender, EventArgs e)
{
Response.Write("<script>window.open( '../yourpage.aspx' , '-blank' );</script>");
}