I want to disable Save button when I click Upload Button. on the Upload button I am getting data from Excel sheet and storing it into Gridview, so it takes time, I want to prevent user to click Save button at that period of time. I am using ASP.Net Web Forms Technology. Following Code is the Upload Button Code.
<asp:Button ID="btnUpload" runat="server" OnClick="btnUpload_Click" Text="Upload"OnClientClick="this.disabled = true; this.value = 'Please Wait';" UseSubmitBehavior="false" />