I have a small webspace where I store a xsl-file and a xml-file:
http://members.chello.se/spelbetyg/blog.xml
which is transformed by
http://members.chello.se/spelbetyg/blog.xsl
What I would like to do is to add a function to change the sort order of the blog posts.
Is there any way I can pass parameters with the request so that I can change the <xsl:sort> to sort by ascending or descending depending on the request parameter.
Since my server does not allow server scripting I have to solve this problem on the client-side.
I know this can be done by using javascript, but I would like to see a XSLT solution.
Please help.