User-2108369543 posted
I have a partial view starting with
<% using (Html.BeginForm("Create", "Unit",FormMethod.Post))
{%>
...........
<input type="submit" value="Save" title="Save" style="font-size: 12px; color: Black;
padding-top: 1px; padding-bottom: 1px" id="btnSave"/>
<%} %>
i am currently not using Ajax.BeginForm or any ajax request($.ajax()).How can i block the UI when i press Save button and if it save successfully Unblock the UI.Please help me