Windows Azureエミュレーター(開発環境)でAsp.Net MVC 2プロジェクトを実行しているときに、以下の問題が発生しています
私の web.config ファイルは次のとおりです。
<httpRuntime maxUrlLength="4096" relaxedUrlToFileSystemMapping="true" maxQueryStringLength = "4096" requestValidationMode="4.0" />
クエリ文字列を含む私の URL は次のとおりです。
注:上記の1490 characters
私のコントローラアクションメソッドのリダイレクトは以下の通りです:
return RedirectToRoute("booking", new { action = "index", providerKey = providerKey, ownerKey = ownerKey, arguments = arguments, step = step });
注: arguments
上記のクエリ文字列の詳細を持つ
このエラーページを取り除く方法は?