Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
|
|
ASP Script to Sort XMLASP script showing how to sort records in an XML document. <%@ LANGUAGE="VBSCRIPT" %>
<%
response.ContentType = "text/xml"
' Create an ASP XML parser object
set xml0 = Server.CreateObject("Chilkat.Xml")
' Returns the XML page as a Variant
set xml = xml0.HttpGet("http://www.xml-parser.com/companies.xml")
' Sort the company records by name.
ascending = True
xml.SortRecordsByContent "name", ascending
' Sort the fields within each company record by the field name.
b = xml.FirstChild2()
While b
xml.SortByTag ascending
b = xml.NextSibling2()
Wend
' Navigate back to the root.
xml.GetRoot2()
response.write xml.GetXml()
%>
|
© 2000-2012 Chilkat Software, Inc. All Rights Reserved.