I am using a windows form and call webBrowser1.Navigate("http://localhost:8080/CDStartup.html"). I want to open up a web page that i created in another project.
When i run CDStartup.html from another instance of visual studio and then run my windows form with webBrowser1.Navigate("http://localhost:8080/CDStartup.html"), it displays
the web page on my form. Is there any way to get my CDStartup.html page to run without depending on me to run webBrowser1.Navigate("http://localhost:8080/CDStartup.html") on another instance of visual studio.?
What i am trying to accomplish is run a localhost website on a CD.