首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

URL重写为什么不能传多参数呢?该如何解决

2012-01-29 
URL重写为什么不能传多参数呢?我现在有个页面View.aspx要接受两个参数UserName,InfoIDRewriterRuleLook

URL重写为什么不能传多参数呢?
我现在有个页面View.aspx要接受两个参数UserName,InfoID

<RewriterRule>
<LookFor> http://([a-zA-Z0-9]*)\.abc\.com/([a-zA-Z0-9-]*) </LookFor>
<SendTo> ~/yy/View.aspx?UserName=$1这要用什么连接InfoID=$2 </SendTo>
</RewriterRule>

用&竟然报错.Configuration   Error  
用空格,也不行,哪位大哥告诉我啊..

[解决办法]
帮顶
[解决办法]
<RewriterRule>
<LookFor> ~/(\d+)/center/(\d+)\.html </LookFor>
<SendTo> <![CDATA[~/center.aspx?tid=$1&oid=$2]]> </SendTo>
</RewriterRule>
[解决办法]
用这个吧:http://www.ssxz.com/iuhxq/index.html

热点排行