| Author: Nagarajan 04 Aug 2008 | Member Level: Gold | Rating: Points: 1 |
Just do a response.redirect to url
http://www.google.com/search?q=SearchString
|
| Author: Gayathri 05 Aug 2008 | Member Level: Silver | Rating: Points: 4 |
You can do as following:
string SearchString = txtSearchString.Text.Trim(); Response.Redirect("http://www.google.co.in/search?hl=en&q="+SearchString+")";
But without Internet Connection, the above code will not work.
All systems, in which you are going to deploy your application, need Internet connection.
Let me know if there is any alternate.
|