How to navigate from one page(form) to another page(form)
using C#.net...please give me the example
Answer Posted / 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 |
Post New Answer View All Answers
What is a predicate in c#?
What are extension methods and where can we use them?
Why delegates are type safe in c#?
Differentiate between sqlclient oledb and providers?
Can structs in c# have destructors?
What does using do in c#?
What is the difference between first and firstordefault?
What is difference between ienumerable and iqueryable in c#?
What can be done with c#?
What is verbatim string?
Difference between debug.write and trace.write?
Distinguish between system.string and system.text.stringbuilder classes?
In the page load event I assigned dropdownlist’s datasource property to a valid list. On the submit button click.. The same datasource property is coming as null. Why?
what are the contents of an assembly ?
Is c# still popular?