How can I add the query string to the XSLTsearch results URL?
When I click on the submit button, I would like the query string to display in the URL:
e.g /search-results.aspx?search=red
<xsl:if test="$searchBoxLocation='TOP' or $searchBoxLocation='BOTH'">
<div class="xsltsearch_form">
<input name="search" type="text" class="input">
<xsl:attribute name="value">
<xsl:value-of select="$unescapedSearch"/>
</xsl:attribute>
</input>
<xsl:text> </xsl:text>
<input type="submit" class="submit">
<xsl:attribute name="value">
<xsl:value-of select="$dictionaryButton-Search"/>
</xsl:attribute>
</input>
</div>
</xsl:if>
Can anyone help me out?
Cheers, JV
<form>needs to use theget method. Is that possible in your case, or is that abstracted out of what your XSLT can control? – JLRishe Jan 18 at 4:01