I\'m trying to trigger a button event in a gridview. I created a gridview with the following code:
I tried what u said. In a very simple way. I noticed that gridview didn't have the onItemCommand eventtrigger, but i just used a datagrid instead.
<asp:DataGrid ID="ItemsGrid" AutoGenerateColumns="false" runat="server" OnItemCommand="Save_Check">
<Columns>
<asp:BoundColumn DataField="Title" HeaderText="Title"></asp:BoundColumn>
<asp:ButtonColumn DataTextField="Year"></asp:ButtonColumn>
</Columns>
</asp:DataGrid>
Like this it works. However if I create a templatecolumn with a button inside it, it gives the same error. Also.. If i change the buttontype of the buttoncolumn to "pushbutton" it again gives the same error. It works with a linkbutton... What's the difference? I really would like to have a button cuz a link just looks ugly ;)
Cheers
You should add an OnRowCommand event in the GridView and then implement an event handler. On your Button instead of implementing OnClick you should optionaly just provide the attributes CommandName and CommandArgument i.e:
<asp:Button ID="Button1" runat="server" Text="Seen" CommandName="Seen" CommandArgument='<%#Eval("RecordID") %>'/>
Then in your OnRowCommand event handler you can add your code
string test = "test";
The click of the Button will always trigger the OnItemCommand event, even if you do not specify the CommandName attribute, however this allows you to have multiple buttons on a row, so that each one will perform a different functionallity. The CommandArgument allows you to provide an argument for your functionallity. If for example you wanted to pass the ID of the Person you are seeing, you could pass CommandArgument="<%# Eval("PersonID") %>