when i click on Map i am opening a popup.in that popup i need to Add a ASP link button when i click on link buttton i need to open a page like map1.aspx.from popup how to add link button and how to redirect to that page when i click on link button.i want only popup and Asp link button.frrom popup only i need to redirect that page.
How to add a link button on Popup
Hello rajanikanth,
Thanks for your post, you can refer HowDoISamples-->GettingStarted-->AddAPopup, in that sample, we using contentHtml to append everything we want to show in the popup, so the only thing you need append is just
, and change the target to _blank if you want to open a new page or _self if you want to redirect the current page.
(a href='xxx' target='_blank')link url(/a)
Regards,
Gary