@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
this line ===> @Html.ActionLink("Back to List", "Index")
</div>
}
I don't want this action.
when I to do delete action from Index page after than delete data and back to Index page directly.
how I to do it ?
When I use @html in mvc script or orther way ?
thank