Posted on: 4/3/2015 8:22:54 PM | Views : 650

How I can show message to the customer after customer click on Update button and I want to stay in same page. I am using MVC 5.
My view consists of some text boxes and a submit button. 

@model CSAProject.Models.CustomerModel <br /> <br /> @using (Html.BeginForm(null, null, FormMethod.Post, new { id = "Customer" })) { @Html.AntiForgeryToken() <div class="form-horizontal"> @Html.ValidationSummary(true) <table> <tr> <td colspan="2"> <h4 style="color: #009AE1"><u></u>Customer Profile</h4> </td> </tr> <tr> <td> @Html.LabelFor(model => model.isRegistered) @if (Model.isRegist ...

Go to the complete details ...