Advertisement

03.06.2007 at 11:25AM PST, ID: 22431875
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

migrating from XslTransform to XslCompiledTransform

Tags: xslcompiledtransform, xsltransform
Hello,
I have a web proyect/solution built in .Net 1.1 which I am migrating to 2.0

There is a function which is called from just about everywhere:
///<summary>
///Applies an xsl transformation to a xml document
///</summary>
///<param name='strXML'>The string of the xml document</param>
///<param name='strXSLURL'>The url of the xsl</param>
///<param name='Response'>The html response object to send exception if
needed</param>
///<returns>The result of transformation</returns>
public static string TransformXML(string strXML, string strXSLURL,
System.Web.HttpResponse Response)
{
System.Xml.Xsl.XslTransform oXSLT = new System.Xml.Xsl.XslTransform();
oXSLT.Load(strXSLURL);
return TransformXML(strXML,oXSLT,Response);
}

The third parameter is System.Web.HttpResponse which is not compatible with
XslCompiledTransform

Is there a way to fix this function in such a way that I do not have to
modify all the calls to this function?

Thanks
Start your free trial to view this solution
Question Stats
Zone: Programming
Question Asked By: sinner
Solution Provided By: Computer101
Participating Experts: 2
Solution Grade: A
Views: 0
Translate:
Loading Advertisement...
03.06.2007 at 11:53PM PST, ID: 18668444

Rank: Guru

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.07.2007 at 04:32AM PST, ID: 18669430

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
03.07.2007 at 08:06AM PST, ID: 18671156

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.10.2007 at 05:56PM PDT, ID: 18886619

Rank: Genius

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
04.17.2007 at 07:20PM PDT, ID: 18928943

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080236-EE-VQP-29