Your problem is probably in your routing table. I created a WebForms project to test this.
Global.asax ( RouteConfig, - App_Start/RouteConfig.cs) RegisterRoutes. , .
void RegisterRoutes(RouteCollection routes)
{
var settings = new FriendlyUrlSettings();
settings.AutoRedirectMode = RedirectMode.Permanent;
routes.EnableFriendlyUrls(settings);
routes.MapPageRoute("","Person/{IDP}", "~/Person.aspx");
}
Application_Start , , App_Start: RouteConfig.RegisterRoutes(RouteTable.Routes);
global.asax.cs, RegisterRoutes(RouteTable.Routes);
http://PC-81/SkillDatenbank/Person/1, RouteData 1 , :
