Not sure what the problem is, the only real difference I can see between the pages that might be interfereing with things is that the dot net pages are served as application/xhtml+xml whilst the standard page is text/html. you may need to use cdata escaping, eg:
Code:
<script type="text/javascript">
//<![CDATA[
function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(37.4419, -122.1419), 13);
map.openInfoWindow(map.getCenter(),
document.createTextNode("Hello, world"));
}
}
//]]>
</script>
just a wild guess
Bookmarks