Altova Mailing List Archives>Archive Index >microsoft.public.xsl Archive Home >Recent entries >Thread Prev - Re: XML, XSL and format dates >Thread Next - Re: XML, XSL and format dates Re: XML, XSL and format datesTo: 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
| ||||||
| Company | Legal | Press | Partners | Careers | Sitemap | Contact Us | Altova Blog | Mobile | Full Site | |||
|
