Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
12k views

ASP.NET MVC AcceptVerbs and registering routes

do I have to register the HttpVerb constraint in my route definition (when i'm registering routes) if i have decorated my action method with the [AcceptVerbs(..)] attribute already? eg. i have this. ...
6
votes
1answer
385 views

Respond to HTTP HEAD requests using ASP.NET MVC

I'd like to correctly support the HTTP HEAD request when bots hit my ASP.NET MVC site using HEAD. It was brought to my attention that all HTTP HEAD requests to the site were returning 404s, ...
1
vote
4answers
634 views

Testing MVC Controller Action HttpAcceptAttribute Verbs

What is the best way to unit test the controller action HttpAcceptAttribute verbs? So far I have the following but it's so ugly even a mother couldn't love it and not very flexible. Is there a better ...
1
vote
2answers
1k views

Asp.net MVC AcceptVerbs

Here the RedirectToAction() doesn't call the ActionResult Index. Do I need to register a route for this? [ActionName("onchange")] [AcceptVerbs(HttpVerbs.Post)] public ActionResult OnChange(int i) { ...
0
votes
1answer
127 views

What is the default behaviour of a controller action not marked with AcceptVerbs, HttpGet or HttpPost?

If I create a controller action and do not decorate it with AcceptVerbs, HttpPost or HttpGet. What is the default behaviour? Does the action allow any access method or does it default to GET?