hello,
I have a database table called Location that stores Lat and longitude of addresses and table Artists which stores personal details.
using select method I call the artist table with inner join to get lat and long and then
show the locations on a google MAP with markers and use clustering
string strcon = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
//create new sqlconnection and connection to database by using connection string from web.config file
SqlConnection con = new SqlConnection(strcon);
DataTable dt = new DataTable();
{ ...
Go to the complete details ...