<asp:GridView runat="server" ID="gv1" AutoGenerateColumns="false" ShowHeader="true" >
<Columns>
<asp:TemplateField HeaderText="Title" >
<ItemTemplate>
<asp:HyperLink ID="HyperlinkName" runat="server" />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Actions" ItemStyle-HorizontalAlign="Center" ItemStyle-Width="80">
<ItemTemplate>
<asp:LinkButton ID="DeleteButton" runat="server" title="X" />
</ItemTemplate>
</asp:TemplateField>
I managed to get the button to be disabled under the RowCommand event but on longer operations the user is able to click this button multiple times.
How could i set the button to disabled ...
Go to the complete details ...