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
Post a Comment