vote up -3 vote down star

I need to shape some data for a web client should I use XSLT or ASP.net?

flag
2  
Need more details. Both have their uses. – Steven Sudit Jul 1 at 20:43
what is the source data? xml – redsquare Jul 1 at 20:43
1  
could you elaborate a bit on "shape some data" sounds trendy, but is in fact vague. – Ralph Shillington Jul 1 at 20:43
1  
How is xslt a dead technology? I don't get it. – shylent Jul 1 at 20:44
4  
I need to look up some information. Should I use a computer, or Google? – GalacticCowboy Jul 1 at 20:46
show 6 more comments

closed as not a real question by Neil Butterworth, Bob King, marc_s, olavk, JB King Jul 1 at 21:07

6 Answers

vote up 3 vote down check

Both XSLT and its component XPath and cousin XQuery are very much alive.

There is active development going on for both the Saxon XSLT 2.0 engine, and IBM just announced support for XSLT 2.0 and XPath 2.0.

A very healthy mailing list called xsl-list is run by Mulberry Technologies. W3C members, XSLT engine implementors, and developers all contribute regularly there.

link|flag
vote up 7 vote down

XSLT is not dead technology. It is still very alive and well.

It all depends on what you are trying to accomplish. You could very well use XSLT with ASP .NET if you wanted to. Say for transforming XML output into XHTML for display.

link|flag
vote up 2 vote down

XSLT can run both server-side and client-side. If you're serving XML data, you can do a lot with client-side XSLT stylesheets that transform the XML into XHTML with CSS styling and JavaScript dynamic features. However, because of the difficulty of making it work in every browser and version, I only use client-side XSLT for Intranet apps.

link|flag
Just for giggles I wrote a REST base WCF service that uses XSLT transforms and hosted it under ASP.Net. The interesting thing is the fact it runs faster then the same transform in WebForms. – Matthew Whited Jul 1 at 21:07
vote up 1 vote down

I really like XSLT as it is vendor neutral as well as being easy to do in any .NET language (C#, VB.NET etc)

link|flag
vote up 1 vote down

The XslTransform Class is a way to use both as it can be used within ASP.Net using an XSLT. You may need to restate the question if that answer is unacceptable.

link|flag
vote up 1 vote down

I wish it was dead :-S

link|flag
2  
I wish there was a better, standard, widely supported alternative. But there isn't :-( – Nat Jul 1 at 20:59
1  
And I am glad it is not :) – Rashmi Pandit Jul 2 at 5:34

Not the answer you're looking for? Browse other questions tagged or ask your own question.