public ActionResult Index()
{
return view();
}
[HTTPPOST]
public ActionResult Index(){
return view();
}
what is the difference between both in ASP.NET MVC
what is the difference between both in ASP.NET MVC |
|||
|
|
|
If you don't define any attribute above the method then Action accepts all kind requests (GET, POST etc.) If you define
Btw. In your example there is a problem with method signatures. Method signatures must be different even if you put attributes above them. |
||||
|
|