1. ホーム
  2. asp.net

Bad Request - Invalid URL HTTP Error 400の対処方法について。

2022-02-17 18:17:43

routes.MapPageRoute を使用する場合、ルートの URL が 256 を超えると、記述のようなエラーになります。

回避策は以下の通りです。

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters]
"UrlSegmentMaxLength"=dword:00000400
Open the registry above and add a new UrlSegmentMaxLength setting of 1024 length will basically satisfy most of your needs.

Reference URL http://stackoverflow.com/questions/8447698/the-request-url-is-invalid-in-iis-7

Open the registry above and add a new UrlSegmentMaxLength setting of 1024 length will basically satisfy most of your needs.

Reference URL http://stackoverflow.com/questions/8447698/the-request-url-is-invalid-in-iis-7