Articles   Dev Forums   Personalize   Favorites   Member Login        Active Users:  453
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Friday, October 10, 2008
Home
Articles & Samples
Dev Search
Dev Forum
Add a Listing
Sample Chapters
Directory Feed
Link to US
Contact

Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts

Trusted by over 7 million customers!
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

Customizing the COMponent to Create an XML Structure       
Total Hits: 376  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is the second of a series of articles I am writing that deals with using XML and the latest in XSLT technology to create a dynamic web application. My tentative plan for these articles are the following: 1.) Create an XML document by converting data shaped recordsets with a recursive component. 2.) Getting a more customized XML document by tweaking the SQL statement and the code for the component. 3.) Using XSLT to get a viewable HTML interface in IE5. 4.) A case study using XSLT to cr.....

PHP XSLT Functions       
Total Hits: 109  |  Today: 1       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....

Performance Tuning XSLT - Part 3       
Total Hits: 208  |  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....

Permutations of the values of N nodes       
Total Hits: 161  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Presented is an XSLT implementation of an algorithm for the generation of permutations....

Combinations of k out of n numbers       
Total Hits: 141  |  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)....

For Next Loop in XSLT       
Total Hits: 128  |  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....

XSLT as a Code Generator       
Total Hits: 362  |  Today: 1       Rating:  
Read Reviews | Write Review |              Your Rating: 

If you thought XSLT was only useful for data interchange and generating HTML and XML dialects, this article will help you see greater possibilities. In this article Jonathan Moore will show you various architectural uses and tips and tricks for using XML/XSLT to generate output that is not valid XML, but instead C++, VB, or Javascript code to name but a few....

Find the number of tokens or words in a string       
Total Hits: 174  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

XPath's string functions lack a convenient means of doing things like extracting the third token in from the end of a list or even identifying how many words there are in a string. This code snippet does identify how many tokens there are in a list....

Randomization of node-sets or node-lists       
Total Hits: 371  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

I am pleased to present a complete solution for the problem of
producing and processing randomized node-sets or node-lists (random
indices). This is a XSLT 1.0 solution and can be used immediately....

Splitting and Manipulating Strings       
Total Hits: 358  |  Today: 0 Author: Bob DuCharme       Rating:  
Read Reviews | Write Review |              Your Rating: 

XSLT is a language for manipulating XML documents, and XML documents are text. When you're manipulating text, functions for searching strings and pulling out substrings are indispensable for rearranging documents to create new documents. The XPath string functions incorporated by XSLT give you a lot of power when you're manipulating element character data, attribute values, and any other strings of text that your stylesheet can access. We'll start by looking at ways to use these functions to spl...

Doing XPath and XSLT with Style!       
Total Hits: 580  |  Today: 2       Rating:  
Read Reviews | Write Review |              Your Rating: 

This manuscript is an abridged version of a chapter from the Wrox Press book Visual Basic 6 XML. This is chapter 4 which looks at XPath for querying a document, XSLT for transforming a document, styling a document with Cascading Style Sheets and styling a document by using transformations (XSLT) ....

ADO, XML and XSLT Populating Tables and Combo boxes       
Total Hits: 1788  |  Today: 1       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article leads you through understanding the structure of the XML returned from ADO recordset. Using the original version of the MS XSL transformation, Michele explains how to generically populate a table and combo boxes, from the ADO XML stream, using XSL....

HANDLING BINARY AND IMAGE DATA ALONG WITH TEXTUAL DATA IN XML OVER THE WIRE       
Total Hits: 416  |  Today: 3 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...

Introducing XSLT       
Total Hits: 161  |  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: 195  |  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....

Hex and Binary Conversions in XSLT - with Boolean math functions       
Total Hits: 211  |  Today: 0 Author: Martin Rowlinson       Rating:  
Read Reviews | Write Review |              Your Rating: 

An XSLT library for converting decimal/hex/binary - with some basic Boolean math (AND,OR and XOR) functions....

Support automatic transformation using XSLT in IE in side by side mode       
Total Hits: 207  |  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...

Comparing Strings in XSLT for greater/less       
Total Hits: 232  |  Today: 1 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....

Modifying the transformation of an XSLT document at runtime       
Total Hits: 95  |  Today: 0 Author: Eric Yao       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is an XML/XSLT example of using transformation to modify XSLT document at runtime. In this example, you can click table header to sort table in ascending order and click again in descending order....

XSLT/XPath Tutorial       
Total Hits: 210  |  Today: 0 Author: Tracey Wilson       Rating:  
Read Reviews | Write Review |              Your Rating: 

Trace Wilson, architech for VBXML.COM wrote this 28 page XSLT tutorial. It includes zipped example code and worksheets that lead you through the basics of XSLT development. It covers all the basics right up to advanced concepts....


1  2  3  4  Next >> 


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com