Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

pass by url sort order

Status
Not open for further replies.

bont

Programmer
Joined
Sep 7, 2000
Messages
200
Location
US
I have a pass from an ASP page:

objProcessor.AddParameter "SortOrder", strSortOrder

On the xsl page, I am trying to:

<xsl:variable name="SortOrder" select="'SortOrder'"/>

followed by:

<xsl:sort select="*[name()=$SortField]" order="$SortOrder" />

The SortOrder fails, how can I get this to work?
 
Try using the xsl:param instead of the xsl:variable.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top