Click here to Skip to main content
15,891,248 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I need to search of my input textbox value into google search from winforms applicaition.
can anyone help plz...?
Posted
Comments
ZurdoDev 15-Sep-15 15:13pm    
What is your question?
Richard MacCutchan 15-Sep-15 15:13pm    
Learming to use Google to do searches manually would get you well on the way to solving this. Try Googling "C# HTTPRequest" for the documentation.
VR Karthikeyan 16-Sep-15 4:08am    
Are you want to perform search using browser or with in your form?
NagaNimesh 11474558 16-Sep-15 6:54am    
using winform and also i need to get the webpage content to the string

1 solution

Use following code,
C#
string SearchPrefix = "https://www.google.co.in/search?q=";
System.Diagnostics.Process.Start(SearchPrefix + YourTextBox.Text);
 
Share this answer
 
v2

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