Opening a WebForm on Button Click

  • Thread starter Thread starter Brian Conway
  • Start date Start date
B

Brian Conway

How do I code in C# to have a button click open another Form within the same
application, then I want the form that it opened to get filled out and on
submission of that form to close that form and go back to the original
calling form.
 
Brian Conway said:
I should add that this is a web application.

You have to pass the form name to the second form, then rederict back to the
main form. This is a comparison of an ASP.NET app to a third party tool, but
the ASP.NET demo here does exactly as you ask:

http://www.atozed.com/intraweb/aspnet/CodeCompare.iwp


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"

Make your ASP.NET applications run faster
http://www.atozed.com/IntraWeb/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top