A better approach to handle large data navigation
Combining the better approach of server side data fetching with
client side data mgmt using XMLHTTP Request object and XML data
island, will result a web-based data explorer with no more
refreshing page and no more long loading time on the first
request.
Add XML Newsfeeds to Your Site
This tutorial explains how to fetch XML data from an external web site and transform the data into HTML through XSL and ASP.
Appending to XML with ASP
This article is the third in a series of articles on manipulating XML data with ASP.The example in this article is very similar to the example on Saving HTML Form Data to XML. However, instead of creating a new file each time that the form is submitted, we will check to see if the file already exists, and if it does, we will append to it. Using this type of technique, we are creating a data construct similar to a data base table.
Create an Generic ASP Page to Test XSL Transformations
This article demonstrates how to create a generic ASP page that allows you to evaluate the outcome of using different XSLT documents to transform an XML document without adding or modifying an <?xml-stylesheet?> processing instruction in the XML document.
Displaying an RSS Feed using ASP
This tutorial will walk you through adding dynamic content from an RSS 2.0 data feed. RSS is a XML format for syndicating news content, web site updates, and blogs. Learn how to add this content to your web site with ASP.
Editing XML with XSL and ASP
This article is a follow up to the Saving HTML Form Data to XML article. This article builds upon it. I have received pretty positive feedback on the Saving HTML Form Data to XML sample, but many people wanted to know how to edit the XML data. So, without further ado, here it is: Editing XML with XSL and ASP.
Getting Started with XML
An introduction to XML, which stands for EXtensible Markup Language, is a means by which data can be stored in an easy to read, textual implementation.
HOWTO: Retrieve XML Data with an XPath Query in an ASP Client
This article demonstrates how to retrieve an eXtensible Markup Language (XML) data stream from a SQL Server 2000 mapping schema by using an XPath query for an Active Server Pages (ASP) client.
Saving HTML Form Data to XML
Usually form submissions are written to some sort of text file or database. If you need your form submission data to be more portable, however, it can be written to an XML file. This article will show you how.
Saving HTML Form Data to XML
Usually form submissions in ASP are written to some sort of database management system. However, if you need your form submission data to be more portable, it can be written to an XML file. This is especially useful when the data you are gathering on your Web site will be sent to applications on non-Windows platforms. Since XML is completely portable across all platforms the data will not need to be converted.
Searching an XML File with XSL and ASP
This article is the final installment in a series of articles on manipulating XML data with ASP. So far we have learned to add, append, and edit records in XML files using ASP. This article puts on the finishing touches in order to tie all of these processes together.
SQL Server 2000 and XML: Developing XML-Enabled Data Solutions for the Web
Using XML for data access allows you to separate the data from the presentation, and promotes reuse, extensibility, and division of labor. XML also has a simplified data model, which promotes easier testing. This article presents and compares five data access approaches, using a variety of technologies including ASP and ADO, XSLT, and DirectXML. Once built, the solutions are compared on the basis of their speed and efficiency.
Tracking Web Page Visitors with XML
This article creates a simple stats tracking program to demonstrate how to deal with records using XML, instead of ADO Object.
Using Microsoft's XMLHTTP Object to Get Data From Other Web Pages
There is lesser known option from Microsoft that retrieves data from other web sites via HTTP requests. Microsoft's suite of XML DOM (Document Object Model) components includes the XMLHTTP object
Using XML to Improve File-Upload Processing
This article examines an example of multiple binary file uploading for Web applications using XML, without the typical limitations of traditional file upload processing.
XML & Binary Data
In this article I'll show you how to pass binary data as part of XML document and we will learn this by passing a signature image file associated with each bank account, as an example.
XML and XSL with ASP
This article explains in a very simple manner how you can use XML in ASP and VB. Since the inception of XML people many developers have wondered why we need XML... How is it better than HTML?