=======================================Url重写==========================================
1.首先下载URLRewriter.rar,下载之后直接复制到你的网站的bin目录
2.配置你的web.config文件
在<configuration>节点下加
<configSections>
<section name="RewriterConfig" type="URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter"/>
</configSections>
<!--转发规则-->
<RewriterConfig>
<Rules>
<RewriterRule>
<LookFor>~/Url.html</LookFor>
<SendTo>~/Url.aspx?id=aa</SendTo>
</RewriterRule>
</Rules>
</RewriterConfig>