The following code:

<body onload="GetMap()">
    <script type="text/javascript" src="https://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6&s=1"></script>

    <script type="text/javascript">
        var map = null; 
        function GetMap() { 
            map = new VEMap('myMap');
            map.LoadMap();
        } 
    </script>
    <div id='myMap' style="position:relative; width:400px; height:400px;"></div>
</body>

works fine in plain old html, but when I try and use it in an ASP.NET MVC ViewPage, the map portion doesn't render. It's just a grey box with non-functioning controls along the top. Has anyone discovered this problem?

link|improve this question
This shouldn't matter that its asp.net mvc. – Daniel A. White Jun 17 '09 at 18:58
What are you doing in asp.net mvc. – Daniel A. White Jun 17 '09 at 18:58
I've confirmed the problem is that I need to use the SSL version of the script, and on my dev server it's not SSL so it's crashing with poor error handling. If I a.) change the script to use non-ssl or b.) upload the ssl to a secure server then everything works. Thanks. – Scott Jun 17 '09 at 19:12
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown