Posted on: 11/23/2014 4:41:31 PM | Views : 535

can some one help me to add loop to the code below i want to display more than one location in google map

using System; using System.Configuration; using System.Web.UI.WebControls; public partial class _Doctors : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void RepeaterNewscomment_ItemCommand(object sender, RepeaterItemEventArgs e) { //You must specify Google Map API Key for this component. You can obtain this key from http://code.google.com/apis/maps/signup.html //For samples to run properly, set GoogleAPIKey in Web.Config file. GoogleMapForASPNet1.GoogleMapObject.APIKey = ConfigurationManager.AppSettings["GoogleAPIKey"]; //GoogleMapForASPNet1.GoogleMapObject.APIKey = "3.6"; //Specify width and height for map. You can specify either in pixels or in percentage relative to it's container. ...

Go to the complete details ...