javascript - Razor Form 2 submit buttons with confirm -
i have simple form in razor , want add together confirm dialog before save or remove before post. how can this?
using (html.beginform("car", "profile", formmethod.post, new { enctype = "multipart/form-data" })) { <fieldset> ... ... ... <p class="button"> <button type="submit" name="save">save</button> <button type="submit" name="remove">remove</button> </p> </fieldset> } thanks
you utilize jquery prevent normal form submission , inquire confirmation, as seen here
just give html.beginform tag id, as seen here
javascript jquery razor razor-2
No comments:
Post a Comment