Passing multiple parameters in XsltListViewWebPart
Passing a single parameter in XsltListViewWebPart:
<a href=https://<url>/<page>.aspx?<param1>={$thisNode/@param1value}>
Passing multiple parameter in XsltListViewWebPart:
<a href="https://<url>/<page>.aspx?<param1>={$thisNode/@param1value}&<param2>={$thisNode/@param2value}">
Remember that "&" is not enough, you will need to put in "&"
Comments
- Anonymous
January 01, 2003
Didn't think it would be that easy...