I am integrating google map on my webpage, where pins are pointed at some places.
I need to do some code on click of Those pins.
For that I found something in javascript like:
google.maps.event.addListener(marker, 'click', function () {
function1()
})
In function1() I need to fill a datalist which contain some link buttons.
In function1() I tried to call Webmethod, but when I accessed Datalist in the webmothod's function, it retured error "Object refrence not set to an instence of an object."
Can anyone gave me some Ides about that please.
Go to the complete details ...