View Single Post

  #2 (permalink)  
Old 12-21-2006
shaistasohail shaistasohail is offline
Junior Member
Yellow Belt
 
Join Date: Sep 2002
Posts: 20
Question Re: Setting latitude& longitude in mappoint 2006

Is this what you are looking for?

Dim StartLocation As New Location
Dim StartGeoCode As New LatLong
StartGeoCode.Latitude = Request.QueryString("LAT")
StartGeoCode.Longitude = Request.QueryString("LON")
StartLocation.LatLong = StartGeoCode
Reply With Quote