c# - Open and search website from code -


i open new browser page...

process.start("http://www.wolframalpha.com/"); 

and automatically paste in search text...

string inputstring = "x^2+y^2 = 1"; 

and run search without user having anything. how can done?

thanks in advance!

just this..

process.start(      "http://www.wolframalpha.com/input/?i="      + httputility.urlencode("x^2+y^2 = 1")      + "&dataset="); 

it open default browser ( or new tab in existing browser) , encodes search term request.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -