Community-Credit.com
|
NonProfitWays.com
|
SOAPitstop.com
Skin:
Fiery Red
Mello Blue
Purple Passion
The Green Stuff
Grey Flannel
User: Not logged in
Hot Links
Home
Newsletter Signup
XSLT Library
Latest XML Blogs
Featured Examples
Presentations
Featured Articles
Book Chapters
Training Courses
Events
NewsGroups
Menu
Discussions
Examples
Tutorials
Tools
Articles
Resources
Websites
My Pitstop
Sign In
My Profile
My Articles
My Examples
My Favorites
My Resources
Add a Resource
Logout
HeadGeek
About Me
My Blog
HeadGeek Articles
Talking Portfolio
Resume
Pictures
World Trip Pics
Resources
ADO.NET (6)
OTA (47)
WAP (4)
XMLHTTP (1)
Database (31)
Pattern (3)
WebDAV (57)
XMPP (28)
Debugging (15)
RDF (53)
WebService (197)
XPath (142)
DIME (6)
RSS (24)
WML (149)
XPointer (36)
DOM (83)
SAX (80)
WSDL (133)
XQL (23)
DTD (136)
Schema (210)
XAML (1)
XQuery (99)
ebXML (106)
SMIL (119)
XBRL (201)
XSchema (18)
Flash (21)
SOAP (165)
XForms (141)
XSL (133)
Humor (1)
SQL (4)
XHTML (388)
XSL-FO (78)
Java (636)
SQLXML (48)
XLL (7)
XSQL (44)
MathML (124)
SVG (721)
XML (859)
XUL (21)
Oracle (19)
VoiceXML (84)
XML.NET (16)
Total Resources: 5,518
xsl Resources
Prev
Next
1
2
3
4
5
6
7
XslTransform Class Implements the XSLT Processor
The XslTransform class is an XSLT Processor implementing the XSL Transformations (XSLT) Version 1.0 recommendation. The Load method locates and reads style sheets, and the Transform method transforms the given source document. Any store that implements the IXPathNavigable interface can be used as the source document for the XslTransform. The .NET Framework currently implements the IXPathNavigable interface on the XmlDocument, the XmlDataDocument, and the XPathDocument, so all of these can be used as the input source document to a transform.
Type: XSL #Views: 753 Category: Resource
Authoring Match Patterns
The match attribute on the <xsl:template> element contains a pattern expression. The syntax is the same as that used to select nodes with <xsl:for-each>, <xsl:value-of>, and <xsl:apply-templates> elements. However, the pattern is used in quite a different way.
Type: XSL #Views: 682 Category: Resource
Handling Documents and Irregular Data
One of the benefits of using XML is the ability to model irregular data hierarchies, including data with the following characteristics.
Type: XSL #Views: 661 Category: Resource
Detecting and Handling XSLT Errors
An XSL Transformations (XSLT) style sheet can generate two types of errors: parse errors and run-time errors. There are ways to check for these errors and report them.
Type: XSL #Views: 695 Category: Resource
Using XSLT in an Active Server Page
XSL Transformations (XSLT) can be performed at the server. XSLT can be used in your server-side logic to filter or customize XML or to change its schema. You can also deploy content in XML and transform it to HTML on demand for clients.
Type: XSL #Views: 668 Category: Resource
Transforming the Contents of XML Data Islands Using XSLT
Data islands provide a convenient way to access XML data from an HTML page. Because XSL Transformations (XSLT) is an XML grammar itself, data islands also provide a convenient way to load style sheets. The following example uses two data islands to load both the source XML data and the XSLT style sheet. The transformNode method is used on these two data islands to generate HTML that can then be inserted into the page.
Type: XSL #Views: 765 Category: Resource
Browsing XML Using XSLT Style Sheets
The XSL Transformations (XSLT) style sheets used for browsing XML files have more strict requirements than those used for general transformation. For more information about authoring an XSLT style sheet, see XSLT Fundamentals. When authoring a style sheet for use in direct browsing, be aware of the following limitations.
Type: XSL #Views: 458 Category: Resource
Accessing and Outputting Attributes
XSL Transformations (XSLT) provides mechanisms for accessing attributes in the source document, and for generating attributes in the result tree. XSLT attempts to be agnostic about whether data should be encoded as attribute values or child elements, and strives to process either with equal ease.
Type: XSL #Views: 430 Category: Resource
Authoring Well-Formed HTML
Well-formed HTML simply means HTML that conforms to the rules of XML. This means that the same HTML tags are available, but the stricter XML syntax is required. An XSL Transformations (XSLT) style sheet is itself XML and any HTML within it must be well-formed.
Type: XSL #Views: 366 Category: Resource
Creating and Populating an HTML Template
You can use XSL Transformations (XSLT) to merge simple regular XML data with an HTML template for display. Consider the following example.
Type: XSL #Views: 462 Category: Resource
XSLT Fundamentals
An XSL Transformations (XSLT) transformation results in the creation of a new XML tree. This clear separation between the source document and the result trees fulfills the goal of XML to separate content from presentation by allowing both the grammar and structure of the XML source to be independent of the presentation language and structure.
Type: XSL #Views: 713 Category: Resource
XSLT and XPath Conformance Notes
The Microsoft® XML Parser (MSXML) fully supports the XSL Transformations (XSLT) and XPath version 1.0 World Wide Web Consortium (W3C) recommendations. In addition, MSXML maintains backward compatibility with the MSXML 2.0 and 2.5 implementations of Section 2 of the December 1998 XSL Working Draft of Extensible Stylesheet Language (XSL). There is no support for XSL formatting objects.
Type: XSL #Views: 369 Category: Resource
Deploying XSLT on the Server
Server-side transformation of XML using Active Server Pages (ASP) is a viable solution for feeding HTML to downstream browsers. Because different versions of the Microsoft® Windows® operating system are released with different versions of the Microsoft Parser (MSXML), it may be necessary to code to version-dependent progIDs or run MSXML 3.0 in Replace mode on the server. For information about installing MSXML 3.0 in Replace mode, see Install MSXML 3.0 in Replace Mode. For a list of MSXML versions released with the Windows operating system, see GUID and ProgID Information.
Type: XSL #Views: 423 Category: Resource
Deploying XSLT on the Client
Although XSL Transformations (XSLT) solutions can be created for browsers on the intranet, XSLT style sheets can also be used in C++ and Microsoft® Visual Basic® applications running on the user's desktop, for example, a parts inventory or a Human Resources application. Because different versions of the Microsoft Windows® operating system are released with different versions of the Microsoft XML Parser (MSXML), it may be necessary to code to version-dependent progIDs or run MSXML 3.0 in Replace mode. For information about installing MSXML 3.0 in Replace mode, see Install MSXML 3.0 in Replace Mode. For a list of MSXML versions released with the Windows operating system, see GUID and ProgID Information.
Type: XSL #Views: 357 Category: Resource
Deploying XSLT on Internet Explorer
This section explores the considerations and solutions for deploying XSL Transformations (XSLT) with Microsoft® Internet Explorer. Because Internet Explorer 5.0 was released with earlier versions of the Microsoft XML Parser (MSXML) that do not support XSLT, you have the following options.
Type: XSL #Views: 406 Category: Resource
What You Need to Get Started with XSLT
This section discusses the system requirements for running XSL Transformations (XSLT) and offers recommendations for the setting up your development environment.
Type: XSL #Views: 382 Category: Resource
Tutorial: don’t be afraid of XSLT
This pdf is an introduction and overview about XSLT.
Type: XSL #Views: 411 Category: Resource
Customizing HIP: A Beginners's Guide to Editing XSLT Stylesheets
This pdf is an introduction to customize the HIP user interface by way of the XSLT Stylesheets.
Type: XSL #Views: 402 Category: Resource
XSLT Engines
This page describes some XSLT engines.
Type: XSL #Views: 379 Category: Resource
XSLT and the Muenchian Method
I've been spending most of the day trying to figure out how to take a flat structure that is returned from the database and return it in a grouped structure. What basically is going on is that the query returns data that contains repeating elements. At the moment the process is really really slow when more than about a 100 records are return, so in a quest to speed up the page I have found a great what to do it. It's called the Muenchian Method and I found it at Jenni Tenisons website.
Type: XSL #Views: 436 Category: Resource
Prev
Next
1
2
3
4
5
6
7
Featured Products
Fans of "The Office"
Dwight Bobbleheads are here!
“It's me! I'm the bobblehead! Yes!”
Advertise on XMLPitstop
Our Sponsors
Advertise on XMLPitstop
Partners
Friends
EggHead Cafe
Web Servicee development
DotNetSlackers
Lexmark printer refills
confrence call glossary
help desk services
online faxing
chicago web design
Alojamiento de Web
Cheap Web Hosting
San Diego Limo Services
Fendi sunglasses
Video Surveillance
Skype vs. sipcall
Statistics
4,312 Total Members
6 members(last 30 days)
1 members(last 7 days)
0 members(today)
1,953 Total Discussions
0 Posts(last 30 days)
0 Posts(last 7 days)
0 Posts(today)
47,487 Total Blog Posts
0 Blogs(last 30 days)
0 Blogs(last 7 days)
0 Blogs(today)
8,699 Newsgroup Posts
0 Posts(last 30 days)
0 Posts(last 7 days)
0 Posts(today)
14,253 Total Resources
11 Resources(last 30 days)
0 Resources(last 7 days)
0 Resources(today)
David Silverlight's XMLPitstop.com
| 2801 Florida Ave #225|Miami, FL 33133|Ph:305-447-1139