c# - opening browser using a get method url -
i'm trying open default web browser application, far i'm using:
process.start("view.html");
and works, if want open browser url like: "view.html?var=something"
using process.start trows file not found error , cant find way tell open still file method specified.
thanks help
edit:
done in way:
string browserstr = path.getfullpath(config.page_local_url) + _p; process.start("opera.exe", browserstr).waitforinputidle();
anyway, there way find default browser , pass function should not specify it?
try this:
process.start("view.html", "?var=something");
Comments
Post a Comment