ThinkGeo.com    |     Documentation    |     Premium Support

AjaxPostbackEvent

Hi ThinkGeo Team


Can you please give me a sample code showing how to wire a client side event that calls AjaxPostBack procedure that runs on the server like the one shown below?


Best Regards,


Vincent



 



protected void Map1_AjaxPostback(object sender, AjaxPostbackEventArgs e)

switch (e.EventName)

case "ZoomIn": 
Map1.ZoomIn(40);
break; 
case "ZoomOut": 
Map1.ZoomOut(40);
break; 
case "PanLeft": 
Map1.Pan(PanDirection.Left, 20);
break; 
}


Hello Vincent,


Thanks for your post, you can check this post to refer how to let Ajax working, then put the logic above into  ////do sever side processing here


gis.thinkgeo.com/Support/Dis...fault.aspx


Regards,


Gary