Hi Guys,
i am making an application which can take longitude and latitude as input from user and will locate the respective point on google map using default web browser i am able to open a browser through this
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("http://www.gorissen.info/Pierre/maps/googleMapLocation.php");
}
this will open google map with two text boxes where we can enter longitude and latitude of a location
but i don't know how to transfer that user input in these text boxes can any one solve and explain this
Regards