Reputation: 6296
I want to know if System.Web.UI.WebControls.Xml use XslCompiledTransform ?
Upvotes: 1
Views: 502
Reputation: 6296
With Resharper I saw
System.Web.UI.WebControls.Xml
is using
XslTransform
and not XslCompiledTransform
so for performance problems I suggest to rewrite the control and add XslCompiledTransform. and add a cache for the result of Xsl Compilation.
Upvotes: 1