User-947014007 posted
I'd like to be able to write a c# function that is able to take parameters and then based on these, transform a given xml file against a given xslt file.
But I'd to be able to call this function client side via a JQuery ajax request.
I was thinking that I could just have the function sitting behind an aspx page, and I could pull the parameters from the querystring. Something like:
dotransform.aspx?xmlfile=abc.xml&xslfile=123.xsl¶m1=one¶m2=two
Does anyone know if there is a better way of performing this task? I'm kinda new to this so any help is aprreciated.