[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: XML and server-side inclue or external javascript files
- From: Chuck White <chuckwh@pacbell.net>
- To: "Hewko, Doug" <Doug.Hewko@ccra-adrc.gc.ca>, xml-dev@lists.xml.org
- Date: Fri, 29 Jun 2001 08:02:03 -0700
The first thing I would do is upgrade that parser (MSXML2.DOMDocument.3.0).
You'll be in tears using anything under 3.0. Then I'd go to
msdn.microsoft.com or a microsoft-related newsgroup for more specific
answers to your question.
regards,
Chuck White
CEO
The Tumeric Partnership
http://www.tumeric.net
415-585-4178
chuck@tumeric.net
________________________________________
Author, Mastering XML, Premium Edition
Sybex Books, May, 2001
http://www.javertising.com
----- Original Message -----
From: "Hewko, Doug" <Doug.Hewko@ccra-adrc.gc.ca>
To: <xml-dev@lists.xml.org>
Sent: Friday, June 29, 2001 7:32 AM
Subject: XML and server-side inclue or external javascript files
> Can you have XML code loaded from a server side include or external
> javascript files? I made my javascript to load my XML/XSL files very
generic
> and conceptually, that code would be ideal from a server-side include.
> (Maintain in one location, etc.) However, when I tried to implement this
> idea, I would get no output. Was anyone able to place XML/XSL into
> server-side includes or external Javascript files?
>
>
> <!-- the following would be unique to each web page -->
> <span id="FirstAid"></span>
> <script type="text/javascript">
> FirstAid.innerHTML
> =generatetable("../ContactList/Contact.xml","FirstAid.xsl");
>
>
> <!-- the following is common to all web pages -->
> function generatetable(XMLFile,XSLFile)
> {
> // Load XML
> var xml = new ActiveXObject("Microsoft.XMLDOM")