> response.write("<?xml version='1.0' encoding='ISO-8859-1'?>")
> response.write("<markers>")
> while (not oRS.EOF)
> response.write("<marker>")
> response.write("lat=" & oRS("svclatitude") & " ")
> response.write("lng=" & oRS("svclongitude") & " ")
> response.write("html=" & oRS("htmldesc") & " ")
> response.write("label=" & oRS("labeldesc") & " ")
> response.write("title=" & oRS("titledesc") & " ")
> response.write("</marker>")
> oRS.MoveNext()
> wend
>
> oRS.close()
> oConn.close()
> response.write("</markers>")
Seriously? While that might provide something, I'm doubting it's the
XML output that most would expect, and I see numerous likely
holes(such as possible quotes in your descriptions).
Virgil, I don't want to be mean, but it seems like you're asking
numerous questions every day about this ASP stuff you're working
with-- have you considered taking a class? Most of it is pretty basic
stuff that should be taught early on. If a class isn't an option(or
not your style, or too expensive, etc.), I'd suggest a good book on
learning ASP-- that guides you from the beginning, showing you how
everything works, how to apply it, etc. Any decent ASP book will cover
all the questions I've seen you ask this past week or so.
--
Derek
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED]
** All postings, unless explicitly stated otherwise, are the opinions of the
author, and do not constitute legal or medical advice. This statement is added
to the messages for those lawyers who are too stupid to see the obvious.