asp.net 伪静态 html 后面带参数

例如:faq_1.html?id=2

 

相关设置请在网上找吧,直接说内容:

 <RewriterRule>
        <LookFor>~/faq_(.[A-Za-z0-9\-]*).html?(.[A-Za-z0-9\-]*)</LookFor>
        <SendTo>
          <![CDATA[~/FAQ.aspx?aid=$1]]>
      </SendTo>
      </RewriterRule>

 

 

当执行后,页面出现<form action='faq.aspx?aid=1&id=2'></form>

 

?后的参数不需要在重写里出现,当然还有其它方法如mvc,不清楚webform+routing的实现方法

 

 

 

 

(yfdong21.iteye.com)

你可能感兴趣的:(html,.net,asp.net,webform,asp)