このスキーマに一致するルートを無視する必要があります
/{controller}/edit/undefined
{コントローラー}-任意のコントローラーにすることができます
ところで、いつIgnoreを使用するのか、いつIgnoreRouteを使用するのか疑問に思いました。
このスキーマに一致するルートを無視する必要があります
/{controller}/edit/undefined
{コントローラー}-任意のコントローラーにすることができます
ところで、いつIgnoreを使用するのか、いつIgnoreRouteを使用するのか疑問に思いました。
You could add the following at the beginning of your route definitions:
routes.IgnoreRoute("{controller}/edit/undefined");
BTW I was wondering when to use Ignore and when IgnoreRoute.
It's the same thing. IgnoreRoute
is an extension method that does the same as Ignore
.