如何在WebForm ASP.NET C#中添加MapPageRoute

时间:2018-08-04 17:20:16

标签: c# asp.net url-rewriting global-asax

添加产品时,它将具有以下路径:localhost.com/product.aspx?id=123456,并且我要重写网址:localhost.com/123456

但是文件product.aspx.cs不能影响global.ascx文件

我的代码:

int id=123456;
routes.MapPageRoute("Product", "~/"+id.ToString(), "~/Product.aspx?id="+id.ToString());
//Route Name : Product
//Route URL : "~/"+id.ToString()
//Physical File: ~/Product.aspx?id="+id.ToString()

0 个答案:

没有答案