I have a grid and I want to make it not give postback
when clicked on some boundfield
(those action buttons).
I did it this way, but it always refreshes the page.
<asp:ScriptManager ID="ScriptManager" runat="server"></asp:ScriptManager>
<asp:UpdatePanel runat="server" UpdateMode="Conditional" ChildrenAsTriggers="true" >
<ContentTemplate>
<asp:GridView ID="GridView" runat="server" .. ETC />
<Columns>
<asp:ButtonField ButtonType="Image" CommandName="Excluir" />
</Columns>
</asp:GridView>
</ContentTemplate>
</asp:UpdatePanel>