On Apr 20, 4:39 pm, pmni <[email protected]> wrote:
> In a vb.net script I have this:
> Page.ClientScript.RegisterClientScriptInclude("UrlGoogleMaps",
> ResolveClientUrl("http://maps.google.com/maps?
> file=api&amp;v=2&amp;sensor=true&amp;key=ABQIAAAA-Z-lBMrt2XDfP-
> YP63c7kRTqz7d8C8Jj0R24c23-UrfUbKpoLRRO6j8M6ii3NyOrpF3d60H36u9PXw"))
>
> But they replicate in the final display... You know why?

Your editor is deciding that & needs to be &amp; -- without checking
that you have already done that. So you end up with &amp;amp;

The solution is just to use & and let your editor change it to &amp;

...maps;file=api&v=2&sensor=...

Andrew
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to