I made an project for access google map from windows application with in that just I created one form with button and textbox name called txtsource and txtdestination , when the user perform click option on button the bellow code will execute
string startupv = (Application.StartupPath + "\\Default.htm".ToString());
System.Diagnostics.Process.Start(startupv);
and call Default.html page
in default.html page having two textbox for get the user source and destination value .What I actually expecting here mean from the windows application txtsource and txtdestination textbox value should pass default.html page textbox.
With out using Webbrowser.