简体   繁体   中英

How to handle a send parameter button in asp.net MVC c #?

How to handle a send parameter button in asp.net MVC c #?

<form id="form" name="form" action="" method="post">
    <label>Nom : </label>
    <input type="text" id="NAME" name="NAME" class="form-control"  value=@Model.NAME required />
    <input type="submit" value="importer  />
</form>

Use Ajax begin Form to get it

In the Html

      @using (Ajax.BeginForm("test", "Inicio", new AjaxOptions { HttpMethod = "Post", OnSuccess = "Sucesso(data);" }))
      {
        <label>Nom : </label>
        <input type="text" id="name" name="name" class="form-control" required />
        <input type="submit" value="importer" />
      }

In The controller

    [HttpPost]
    public ActionResult test(string name)
    {
        return Json(new { retorno = name }, JsonRequestBehavior.AllowGet);
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM