I found out that this was a common coding error in my google maps api script tag. I got a warning when I had a script tag like this:
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=MyGoogleMapsApiKey" type="text/javascript"></script>
The problem here is duplication of amp; that was generated from a script writer in asp.net. Thus, & was replaced by & .
The script tag should look like this:
<script src="http://maps.google.com/maps?file=api&v=2&key=MyGoogleMapsApiKey" type="text/javascript"></script>
So, if you use the scriptmanager to add script tags, or in any other way, by dynamically adding script tags to your pages, skip to duplicate amp; .
taudorf
source share