我想把about.aspx后面的全去掉不知道怎么做前台
<a href="about.aspx<%#Eval("CategoryID") %>">web.config
<rewrite url="~/about.aspx(.+)" to="~/about.aspx?id=$1"/>
这样
.about.aspx后面会带上<%#Eval("CategoryID") %>
我想让后面的参数去掉我用过if也不行
<!--<if url="~/about.aspx(.+)$">
      <rewrite url="~/about.aspx" to="~/about.aspx?id=$1"
           processing="stop"  />
    </if>-->