我正与欧洲空间法中心合作,并提出一些问题。 我想我这样说:
www.domain.com/product/myproduct
但是,我也希望能够检索该产品的识别资料,而不能查阅数据库。 我想到的是,我们有这样的一席之地:
www.domain.com/product/myproduct/1
或
www.domain.com/product/1-myproduct
但是,如果我能够隐藏该身份证,那将更好。
因此,我如何最简单地这样做?
Currently my Global.asax has the following route:
routes.MapPageRoute("Produkt visning",
"legetoej/{Categoryname}/{SubCategoryname}/{ProductName}",
"~/SingleProduct.aspx");
当我找回名字时,我就象在SIngleProduct那样。 页: 1
object productRoute = Page.RouteData.Values["ProductName"];
if (productRoute != null && !string.IsNullOrEmpty(productRoute.ToString()))
{
// do stuff
}
If I very simple could just get the ID instead of name, it would be awesome.
a. 感谢大量多彩的主机;-