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



How to navigate from one page(form) to another page(form) using C#.net...please give me the exampl..

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

How to navigate from one page(form) to another page(form) using C#.net...please give me the exampl..

Answer / vikul

Response.Redirect("SamplePage.aspx") OR Server.Transfer
("SamplePage.aspx")

Is This Answer Correct ?    37 Yes 13 No

How to navigate from one page(form) to another page(form) using C#.net...please give me the exampl..

Answer / k.alekhya

form2 bond=new form2();
bond.show();

Is This Answer Correct ?    19 Yes 4 No

How to navigate from one page(form) to another page(form) using C#.net...please give me the exampl..

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

How to navigate from one page(form) to another page(form) using C#.net...please give me the exampl..

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

How to navigate from one page(form) to another page(form) using C#.net...please give me the exampl..

Answer / sumitra

fromname objetname=new formname();
objectname.show();

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Difference between direct type casting and using "as" keyword?

1 Answers   TCS,


How do you implement multiple inheritance in .NET?

10 Answers   Microsoft,


What is private virtual in C#?

0 Answers   CDC,


What are the types of parameters in c#?

0 Answers  


What is ulong in c#?

0 Answers  






1)what is timestamp in C# (anilringole@gmail.com)

2 Answers   Wipro,


Wcf and what is difference between wcf and web services?

0 Answers  


Explain the functionalities of satellite assembly?

0 Answers   Siebel,


What do you mean by generic class in c#?

0 Answers  


Define xslt.

0 Answers  


How many bytes is an int c#?

0 Answers  


Write code for palindrome?

10 Answers   Tech Mahindra,


Categories