说我输入:
blah.com/page.aspx/Touch?test=2
我怎样才能在 Page_Load 中获得“触摸”?
谢谢
我认为您想要 Request 对象的PathInfo属性。
从链接页面:
对于 URL
Http://www.contoso.com/virdir/page.html/tail
,PathInfo 值为 /tail。
你需要Request.Querystring
. 看看这个 msdn 文档页面: http: //msdn.microsoft.com/en-us/library/ms524784 (v=vs.90).aspx