hi everyone at c-sharpcorner I have question in c# GUI as I m weak in it. My question is I have created a windows application & a small web application just a home page, so what I want to do is I want to open my web application(asp.net proj) on a button click of my windows application created in c#GUI(VS2008 Exp edition). PLs any1 can help me plss
I tried giving namespace on that particular form but didn't get 'resource.redirect' .
Any help will be great Help :-)
Loading
NitsPosted Aug 2, 2011, 8:39 AM
Suthish NairPosted Aug 1, 2011, 3:20 PM
Simply use, System.Diagnostics.Process.Start("http://www.c-sharpcorner.com");
This will open the website in default browser.
Explore the Process.Start method, even you can pass Windows Credentials.
Also check WebBrowser control.