今天在練習MVC,想要在MapRoute中約束id的格式
於是加上了constraints
我有一個PageController 底下有一個Action叫TEST
原本沒加上constraints時我可以用
https://localhost/Page/TEST?id=123 跟 https://localhost/Page/TEST/123 進入
但加了constraints後卻變成https://localhost/Page/TEST/123 才可以進入Action
如果我還是想用https://localhost/Page/TEST?id=123 又要保留constraints該怎麼做呢
感激不盡