Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am developing an application in where i want to open http://google.com in my Form .how can i do this ? pleease help me..
Posted
Updated 29-Nov-11 6:33am
v2
Comments
RaviRanjanKr 29-Nov-11 12:34pm    
A suggestion :- Never use short text words while asking question or answering like plz instead of 'Please'.

Try
webBrowser1.Navigate("http://www.google.com");


or you can learn given article to know more about webbrowser control
Web Browser in C#[^]
 
Share this answer
 
Try
System.Diagnostics.Process.Start("http://google.com");

For more reference
MSDN-[Process.Start Method][^]
 
Share this answer
 
Comments
Kannannns 29-Nov-11 12:33pm    
ya i know this, but my question is i want to open it as a part of my form[inside my form] how could i do this.
RaviRanjanKr 29-Nov-11 12:46pm    
Check my second answer.
Kannannns 29-Nov-11 12:35pm    
like using webbrowser control..
RaviRanjanKr 29-Nov-11 12:46pm    
Check my second answer and follow some given link! that might help you.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900