views:

20

answers:

1

I have a MVC 2 web application that will have a high volume of users. One page in particular will be rendered based on XML from a database table. I was hoping to use de-serialization to parse the XML into an object tree for easier access to the data. However I'm not so sure that this will perform well enough for my users. Is there any other methods to parse the XML that will have better performance implications? I'm not that familiar with XSLT but is that a viable option?

Thanks in advance!!

A: 

We decided to go with the xslt transformation. Problem solved.

Quadwwchs