strang asp.net mvc behavior
- by ooo
i have a controlled called AppController.
i have 2 actions: Details and Delete
both pass in int id as the parameter to the action
WHen i go to:
mysite/App/Details/100
I can catch it in the controller details action but when i go to
mysite/App/Delete/100
The breakpoint never hits and i get this in the browser:
Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
any idea what might be happening?