1
私はほとんどすべての私のアプリケーションでは、この方法を使用していますが、今、それは私がmscorlib.dllASP.NETルーティングの問題
Global.asaxの
routes.MapPageRoute("Page/{ParameterId}", "Url/{ParameterId}", "~/Backend/Page.aspx");
コードビハインド
中にSystem.FormatExceptionを示しif (Page.RouteData.Values["ParameterId"] == null) return;
var Parameter = Page.RouteData.Values["ParameterId"].ToString();
「パラメータ」を初期化しようとするとすぐに例外が発生します。 デバッガは "Page.RouteData.Values"にアクセスできますが、変数はまだnullのままであることを示しています。