在ASP.NET中实现路径重写,Products和ListProductsByCategory.aspx在同一目录下,
<RewriterRule>
<LookFor>~/Products/Beverages.aspx</LookFor>
<SendTo>~/ListProductsByCategory.aspx?CategoryID=1</SendTo>
</RewriterRule>
在真正的页面中是一个显示数据的DATAGRID控件,
但使用DATAGRID的控件自带的排序功能是,请求的路径就成了
localhost/weburl/Products/ListProductsByCategory.aspx?CategoryID=1该如何解决啊?谢谢了