Windows Forms -> Web Forms

DJVege

Member
Joined
May 27, 2003
Messages
5
OK....Heres my latest dilemma!

Ive got a windows form project! (Runs fine). Loacated in D:\blah

Ive got a web forms project (Asp.net application)! (runs fine)- You run it, and a browser appears with some data. It is located in c:\inetpub\wwwroot.

Now, Ive got a button in my windows form project, that when pressed, it needs to bring up the browser from the web forms project. (the file is webform1.aspx).

How do i do this? How do i integrate the 2?

Also, how do I package these 2, so that I can take it to another machine and run it (not create exe file, take all source files etc..). Does the other computer have to have a "c:\inetpub\wwwroot" directory as well?

Also, is c:\inetpub\wwwroot the only directory that you can run asp.net web apps in? It wont let me create it in any other.


Thanks a lot for your responses. Sorry if you dont understand.
 
If you plan to run the aspx files locally the server must be instaled on every computer that will try to run them.
I would say you should just upload the files to a web server and use them from there.
 
Back
Top