How to navigate from one page(form) to another page(form)
using C#.net...please give me the example
Answers were Sorted based on User's Feedback
Answer / kala
you have to create a second form object in first form event.
Ex:
form2 objform2=new form2(parameters)
objform2.show();
Is This Answer Correct ? | 61 Yes | 12 No |
Answer / vikul
Response.Redirect("SamplePage.aspx") OR Server.Transfer
("SamplePage.aspx")
Is This Answer Correct ? | 37 Yes | 13 No |
Answer / sujai cn
you have to create a second form object in first form event.
Ex:
form2 objform2=new form2(parameters)
objform2.show();
//To hide the present form
this.hide();
Is This Answer Correct ? | 18 Yes | 7 No |
Answer / ramesh kumar verma
Firstly create a second form object with any instance and do
the given procedure:-
form2 objform2=new from2();
objform2.show();
//hide the present form
this.hide();
Is This Answer Correct ? | 12 Yes | 5 No |
Answer / sumitra
fromname objetname=new formname();
objectname.show();
Is This Answer Correct ? | 1 Yes | 0 No |
What does it meant to say “the canonical” form of XML ?
What is the difference between asp net and c#?
What do you mean by saying a "struct is a value type"?
Explain attributes in c#?
Can you prevent your class from being inherited and becoming a base class for some other classes?
What is an argument in c#?
What is uint64_t?
What is array formula?
What is enum in c#?
Why References are stored on heap and variables on stack?
Is inheritance possible in c sharp?
What are the steps for creating clr trigger