Information sharing takes place at all levels, whether it be beginning or advanced.
I've been studying all of the courses at w3schools, but in answer to your questions there are no local schools, my car was repoed so driving to Austin is out of the question and the job I thought I had hasn't paid me, so I'm left to pick ya'lls brains when I hit a bump. As for this not working, have you tried it ? I'm sure that you will find that it creates the xml file that google map needs exactly and with minor modification, it will create other xml files. But don't worry I wont take it personally as I have thick skin. I just believe in learning from others mistakes instead of trying to reinvent the wheel every time. Virgil Bierschwale http://www.bierschwale.com http://www.bierschwalesolutions.com -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Derek Kalweit Sent: Tuesday, May 29, 2007 9:15 AM To: ProFox Email List Subject: Re: VFP to XML > 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 [excessive quoting removed by server] _______________________________________________ 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.

