0

如何将查询字符串添加到 XSLTsearch 结果 URL?

当我单击提交按钮时,我希望查询字符串显示在 URL 中:

例如/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>&nbsp;</xsl:text>
    <input type="submit" class="submit">
      <xsl:attribute name="value">
        <xsl:value-of select="$dictionaryButton-Search"/>
      </xsl:attribute>
    </input>
  </div>
</xsl:if>

谁能帮我吗?

干杯,合资企业

4

1 回答 1

1

你的表格需要像:

<form action="?">
    <!--You macro here-->
</form>

要不就

<form>
    <!--You macro here-->
</form>

假设您已删除母版页中的表单标签

于 2013-01-18T11:44:48.310 回答