February 25, 2013
Category: ASP.NET, C#.Net, XSLT
Comments:
The main purpose to use XSLT in C# for making your application faster while rendering from server.
this is the following code on how to use simple xslt files in ur aspx page by using c#.
This is only for rendering a static data only not dynamic means the xslt contains hard coded data only.
This can be handy when u r using any header or footer or any portion of your application which is a bit heavier and taking more time to load.
Step 1:
Create a file named as Demo.xsl and put the below code.
< ?xml version="1.0" encoding="UTF-8" ?>
Test xslt page
Read More