AJAX PopupControl Extender with Bing Maps
Posted
by Morano88
on Stack Overflow
See other posts from Stack Overflow
or by Morano88
Published on 2010-04-22T16:10:02Z
Indexed on
2010/04/22
16:13 UTC
Read the original article
Hit count: 283
Hey!
I want to use AJAX PopupControl Extender with a text box so when a user clicks on the text box a popup that contains the Bing Map appears. I'm using the following code but I don't know why it is not working ?
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:Label ID="Label1" runat="server" Font-Bold="true" Font-Size="14px" Text="Click inside the textbox to open AJAX Popup Control:"></asp:Label>
<div class="clear"><br /></div>
<asp:TextBox ID="TextBox1" CssClass="textbox" runat="server" Width="200px"></asp:TextBox>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.2"></script>
<script type="text/javascript">
var map = null;
function GetMap()
{
map = new VEMap('myMap');
map.LoadMap(new VELatLong(47.6, -122.33), 10 ,'h' ,false);
}
</script>
</head>
<body onload="GetMap();">
<div id='myMap' style="position:relative; width:400px; height:400px;"></div>
</body>
</html>
<ajaxToolkit:PopupControlExtender ID="PopupControlExtender1" runat="server" CommitProperty="foreColor"
Position="Right" TargetControlID="TextBox1"
PopupControlID="myMap" OffsetX="2" OffsetY="2">
</ajaxToolkit:PopupControlExtender>
what's wrong ?
© Stack Overflow or respective owner