How to open a web form to replace current tab instead of new tab? I am using the following code:
ProcessStartInfo sInfo = new ProcessStartInfo("http://localhost:51571/Login.aspx");
Process.Start(sInfo);
How to open a web form to replace current tab instead of new tab? I am using the following code:
ProcessStartInfo sInfo = new ProcessStartInfo("http://localhost:51571/Login.aspx");
Process.Start(sInfo);
You want to Navigate from One Web form to another? If that was the case You can use
Response.Redirect("Default.aspx") other wise provide more details about the question.