Articles
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Thursday, February 09, 2012
Home
Articles & Samples
Dev Search
Sample Chapters
Link to US
Contact
Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > XML > XSLT
Search
DevASP

What's New
What's Hot

XSLT Support in the .NET Framework       
Total Hits: 312  |  Today: 0 Author: Jayram Tallamraju       Rating:  
Read Reviews | Write Review |              Your Rating: 

XSLT is an excellent technology that adds more power to XML. XSLT is a language by itself like most other programming languages. It is the language to transform source data structure to destination data structure and may not be suitable to implement business logic. This means that existing programming languages go hand in hand with XSLT and XSLT adds more power to them. It is possible to get away from XSLT using XML DOM to some extent, but this solution is usually not as elegant in most data/doc...

Sorting the results and use the Axis       
Total Hits: 233  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Sorting the output result tree and the use axis....

HANDLING BINARY AND IMAGE DATA ALONG WITH TEXTUAL DATA IN XML OVER THE WIRE       
Total Hits: 675  |  Today: 0 Author: Peter A. Bromberg, Ph.D.       Rating:  
Read Reviews | Write Review |              Your Rating: 

We needed a way to handle accountholder signature images to be transported in XML in such a way that the image of the person's signature (or really, any binary data) could be transported in the same XML text stream as the other account information in such a way that it wouldn't choke our COM components that process these XML streams, and the processed results to be displayed via CLIENT SIDE script in a web page. This technique can be used to populate formfields in a document for printing, or any...

PHP XSLT Functions       
Total Hits: 229  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

PHP provides this extension which contains processor independent functions for XSLT transformation. The current version (v 4.3.10) of this extension only supports the Sablotron library from the Ginger Alliance. Support is planned for other libraries, such as the Xalan library or the libxslt library....

Whitespace preserving and stripping       
Total Hits: 298  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Whitespace stripping is one of the more confusing subjects in XSLT programming. What is important to understand is at which moments whitespace can be inserted or removed. The only whitespace that gets stripped are text nodes existing entirely of whitespace characters (space, tab, newline). If one non-whitespace character is included in the textnode, it will never be stripped....

Introducing XSLT       
Total Hits: 282  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Extensible Stylesheet Language Transformation (XSLT) is all about handling and formatting the contents of Extensible Markup Language (XML) documents. XML has become a very hot topic, and now it's XSLT's turn. XML enables you to structure the data in documents, and XSLT enables you to work with the contents of XML documents - manipulating the content and creating other documents, such as when you sort an XML employee records database or store that data in an HTML document - and to format that dat...

Performance Tuning XSLT - Part 4       
Total Hits: 265  |  Today: 0 Author: Martin Rowlinson       Rating:  
Read Reviews | Write Review |              Your Rating: 

This part examines the issues solely around how much information should be used in the match attribute of, for example, the element. Disregard for a moment, if you will, the actual definition for the use of the match patterns so that we can concentrate solely on the relative performance of their use and misuse....

Performance Tuning XSLT - Part 3       
Total Hits: 306  |  Today: 0 Author: Martin Rowlinson       Rating:  
Read Reviews | Write Review |              Your Rating: 

There occassionally rages the debate over which is the 'best' out of Attribute Normal and Element Normal XML. Without getting drawn into that debate on an architectural front I'd like to examine the 'facts' on a performance front, especially with regard to XSLT performance....

Another way of avoiding XSLT processor crash       
Total Hits: 205  |  Today: 0 Author: Slawomir Tyszko       Rating:  
Read Reviews | Write Review |              Your Rating: 

An alternative solution to Dimitre Novatchev's way of avoiding XSLT processor crash due to deep recursive processing. This solution does not relinquish recursion, but drastically reduces its depth by using two named recursive templates instead of just one....

Combinations of k out of n numbers       
Total Hits: 256  |  Today: 0 Author: Dimitre Novatchev       Rating:  
Read Reviews | Write Review |              Your Rating: 

An XSLT implementation of an algorithm is presented for the generation of all combinations of k numbers out of n (k <= n)....

Support automatic transformation using XSLT in IE in side by side mode       
Total Hits: 322  |  Today: 0 Author: Don Kackman       Rating:  
Read Reviews | Write Review |              Your Rating: 

A small XSL stylesheet that defers the actual transformation to an XSLT stylesheet...

Helpful XSLT "break" template       
Total Hits: 250  |  Today: 0 Author: Don Kackman       Rating:  
Read Reviews | Write Review |              Your Rating: 

A named template that will halt an XSLT tranformation and reutrn some helpful state information...

How to do a search and replace in XSLT       
Total Hits: 233  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This example demonstrates how to replace carriage returns with a break
in XSLT. It is also a generic template for handling any search and replace....

Comparing Strings in XSLT for greater/less       
Total Hits: 339  |  Today: 0 Author: Dimitre Novatchev       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is a FAQ, because there are no greater/less string comparison operators in XPath and XSLT....

Grouping using xsl:key and the key() function -- the Muenchian method       
Total Hits: 219  |  Today: 0 Author: Dimitre Novatchev       Rating:  
Read Reviews | Write Review |              Your Rating: 

Using the Muenchian method, the following snippet describes how to group your data, returning a distinct, unique list of data.
In many XSLT applications it is necessary to output only a single element that has a specific value (e.g. for an attribute, of a child, of a combination of attributes, of a combination of children, ..., etc.)...

For Next Loop in XSLT       
Total Hits: 246  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

So many people have said that you cannot do For Each - Next looping in XSLT. This snippet demonstrates how to do this using recursion....

Creating a select box and selecting one or more items       
Total Hits: 147  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This snippet describes how to build an HTML select box with select items in XSLT....

FXSL - XSLT Functional Programming Library       
Total Hits: 235  |  Today: 0 Author: Dimitre Novatchev       Rating:  
Read Reviews | Write Review |              Your Rating: 

Higher order functions can be implemented in XSLT, some explanations through these examples....

Combining XML Documents using XSLT     Price: Free   
Total Hits: 193  |  Today: 0 Author: David Silverlight       Rating:  
Read Reviews | Write Review |              Your Rating: 

This snippet contains a collection of 5 distinct approaches to combining multiple XML Documents into a single XML document. The original article is also included as part of this snippet....

Recursion - XSLT     Price: Free   
Total Hits: 208  |  Today: 0 Author: David Silverlight       Rating:  
Read Reviews | Write Review |              Your Rating: 

The following samples correspond to the "Shedding a little light on XML" Q&A column for a past XML Journal article on recursion. I coded about half of the examples and included recursion examples from other contributors....


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com