| Author: Jasdeep Singh 23 Jan 2007 | Member Level: Gold | Rating: Points: 2 |
To go from one window form to another window form we use Response.Redirect("Name of the page on which you want to go")
e.g. Response.Redirect("anotherpage.aspx")
I hope this will solve your problem
Thanx & Regards Jasdeep Singh
|
| Author: Kapil Sharma 24 Jan 2007 | Member Level: Bronze | Rating: Points: 2 |
In Windows Form we have to create an instance of the next form like:
//writing this code on the form from which u have to redirect to another form. //eg; from Form1 to Form2 //on click event of any button ... Form2 frm=new Form2(); frm.show(); me.hide();
|