这就需要URL重写了:通过正则匹配,然后重写地址。。。
string url = Request.AppRelativeCurrentExecutionFilePath;//获取用户请求的路径
//判断路径是否符合
Match match = Regex.Match(url, @"~/Index_(\d+).aspx");
if (match.Success)
{
string id= match.Groups[1].Value;
Context.RewritePath("/Index.aspx?Id = " + id);
}
这是个小例子。。。。 |