Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsGeneralPHPASPPerlColdFusionFlashHTML, CSS, ScriptsBrowsers

Webmaster Forum / HTML, CSS, Scripts / JavaScript / November 2006



Tip: Looking for answers? Try searching our database.

Cross browser compatibility issue - JavaScript Array / ASP JS

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
dwair - 30 Nov 2006 14:35 GMT
Hi, I have been having browser compatibility issues and was wondering
if anyone could help.
I have been using a JavaScript array to populate marker data using ASP
JS in a google Maps project.  For some reason the code works fine in
FireFox but not in Internet
Explorer (Run time error - expected ']' and 'markers' is undefined)
Any help would be gratefully received

--------------------------------------------------
<script type="text/javascript">
// get data from the db and plot the makers
var markers = [
<%while (!rstPropPoints.EOF){%>
               {
               'latitude':
<%=rstPropPoints.Fields.Item("lat").Value%>,
               'longitude':
<%=rstPropPoints.Fields.Item("long").Value%>,
               'propname':
'<%=rstPropPoints.Fields.Item('propname').Value%>',
               'text': '<%=rstPropPoints.Fields.Item('text').Value%>',
               'image':
'<%=rstPropPoints.Fields.Item('image').Value%>',
               'type':
'<%=rstPropPoints.Fields.Item('sleeps').Value%>',
       },
<%rstPropPoints.MoveNext();}rstPropPoints.Close();%>
       ];
</script>
----------------------------------------------------

thanks - Hugh
Martin Honnen - 30 Nov 2006 15:33 GMT
> Hi, I have been having browser compatibility issues and was wondering
> if anyone could help.
> I have been using a JavaScript array to populate marker data using ASP
> JS in a google Maps project.  For some reason the code works fine in
> FireFox but not in Internet
> Explorer (Run time error - expected ']' and 'markers' is undefined)

Have you checked the code that arrives at IE? Is that syntatically
correct? Showing us the ASP code makes it hard for us to find the syntax
error.

Signature

    Martin Honnen
    http://JavaScript.FAQTs.com/

Lee - 30 Nov 2006 15:34 GMT
dwair said:

>Hi, I have been having browser compatibility issues and was wondering
>if anyone could help.
[quoted text clipped - 26 lines]
></script>
>----------------------------------------------------

It's going to be easier to spot the problem looking at the actual
generated code, rather than the ASP.  Since there's probably too
much to look at easily, see if generating only the first half
reproduces the error, and so on until you've identified the
smallest amount of generated code that reproduces it and take a
look at that, and/or post it or a link to it.

--
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.