1 Answer

0 votes
by
We can decorate the MVC action by “HttpGet” or “HttpPost” attribute to restrict the type of HTTP calls. For instanceyou can see in the below code

snippet the “DisplayCustomer” action can only be invoked by “HttpGet”. If we try tomake Http post on “DisplayCustomer” it will throw an error.

[HttpGet]

public ViewResult DisplayCustomer(int id)

{

Customer objCustomer = Customers[id];

return View("DisplayCustomer",objCustomer);

}

Related questions

+1 vote
asked Aug 18, 2019 in MVC Language by sheetalkhandelwal
0 votes
asked Aug 18, 2019 in MVC Language by sheetalkhandelwal
...