Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

asp.net mvc 4 calling method from controller by button

In my Controllers i have class AccountController and within in i have this method

[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult LogOff()
{
    WebSecurity.Logout();
    return RedirectToAction("Index", "Home");
}

In my Views i have cshtml page with body and this part of code

<form class="float_left" action="Controllers/AccountController" method="post">
    <button class="btn btn-inverse" title="Log out" type="submit">Log   Off</button>
</form>

And this doesn't work, anyone know what is problem or some other simple solution?

like image 664
mikrimouse Avatar asked Apr 17 '13 15:04

mikrimouse


People also ask

How can call POST action method on button click in MVC?

click(function () { //On click of your button var property1 = $('#property1Id'). val(); //Get the values from the page you want to post var property2 = $('#property2Id').


2 Answers

You're not referencing the action method here:

action="Controllers/AccountController"

For starters, you don't need to specify Controllers/ because the framework will find the controller for you. Indeed, the notion of a "folder" of controllers isn't known to the client/URL/etc. What you need to give it is a "route" to the specific action method.

Since the MVC framework knows where the controllers are, you need only tell it which controller and which action method on that controller:

action="Account/LogOff"
like image 72
David Avatar answered Sep 28 '22 09:09

David


The action attribute is pointing to a wrong controller action. Your controller action is called LogOff and not AccountController. You should never be manually building <form> elements like that but always use the html helpers that are designed for this purpose:

@using (Html.BeginForm("LogOff", "Account"))
{
    <button class="btn btn-inverse" title="Log out" type="submit">Log Off</button>
}
like image 45
Darin Dimitrov Avatar answered Sep 28 '22 08:09

Darin Dimitrov