Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: XML, XSL and format dates

From: "Kindler Chase - nCubed" <support@--------------.--->
To: NULL
Date: 6/1/2004 10:19:00 PM
Otto wrote:
> Thanks very much, but I have a quetion, How can I know if I´m working
> whit MSXML 4.0, I had been lokking for information in Internet but
> this too much general.
>
>
> Thanks.
>
> See you

Run this on your server (Watch out for the line wraps):

<%
Private Sub n3_DetectXMLComponents()
Dim objXML, objXML3, objXML4

 On Error Resume Next

 Err.Clear
 Set objXML = Server.CreateObject("Microsoft.XMLDOM")
  If Err.Number = 0 Then
   Set objXML = Nothing
   Response.Write "<p>FOUND: Microsoft.XMLDOM</p>"
  Else
   Response.Write "<p style=""color: red;"">NOT FOUND: Microsoft.XMLDOM</p>"
  End If
 Err.Clear

 Set objXML3 = Server.CreateObject("Msxml2.DOMDocument.3.0")
  If Err.Number = 0 Then
   Set objXML3 = Nothing
   Response.Write "<p>FOUND: Msxml2.DOMDocument.3.0</p>"
  Else
   Response.Write "<p style=""color: red;"">NOT FOUND:
Msxml2.DOMDocument.3.0</p>"
  End If
 Err.Clear

 Set objXML4 = Server.CreateObject("Msxml2.DOMDocument.4.0")
  If Err.Number = 0 Then
   Set objXML4 = Nothing
   Response.Write "<p>FOUND: Msxml2.DOMDocument.4.0</p>"
  Else
   Response.Write "<p style=""color: red;"">NOT FOUND:
Msxml2.DOMDocument.4.0</p>"
  End If
 On Error Goto 0
End Sub

Call n3_DetectXMLComponents()
%>

-- 
kindler chase
http://www.ncubed.com
Home of SuperInvoice: The Online Invoicing Application.
Organize your billing process and impress your clients.

news://news.ncubed.com/support
n3 Support Group




transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent