I currently have several buttons in the footer section of my DetailsView. When the user clicks on the Edit link, I would like to hide these buttons. The buttons in the footer should only be visible when viewing the DetailsView in the default read-only
mode.
<asp:DetailsView ID="DetailsView1" runat="server" AutoGenerateEditButton="True" AutoGenerateRows="False"
Height="50px" Width="125px">
<HeaderTemplate>
<asp:Label ID="LabelHeader" runat="server" Text="RequestDetails"></asp:Label>
</HeaderTemplate>
<Fields>
<asp:TemplateField HeaderText="RequestID">
<EditItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind(&quo ...
Go to the complete details ...