Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
    public ActionResult Index()
{
    return view();
    }

    [HTTPPOST]
    public ActionResult Index(){
    return view();
    }

what is the difference between both in ASP.NET MVC

share|improve this question

1 Answer

up vote 5 down vote accepted

If you don't define any attribute above the method then Action accepts all kind requests (GET, POST etc.)

If you define [HttpPost] then only Post is accepted. In some cases it is very important to accept only certain kind of requests. W3.org has a good checklist when to use Get & Post.

Use GET if:

  • The interaction is more like a question (i.e., it is a safe operation such as a query, read operation, or lookup).

Use POST if:

  • The interaction is more like an order, or
  • The interaction changes the state of the resource in a way that the user would perceive (e.g., a subscription to a service),
  • or The user be held accountable for the results of the interaction.

Btw. In your example there is a problem with method signatures. Method signatures must be different even if you put attributes above them.

share|improve this answer
+1 - clear explanation – jim tollan Jan 21 '11 at 7:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.