tags:

views:

42

answers:

2

Hello,

I've created a Column button in datagrid using this code

<Columns>
    <asp:ButtonColumn Text="Resend" ButtonType="PushButton" CommandName="Resend"></asp:ButtonColumn> </Columns>

But I don't know where to access the event of this Button, also I would like to know how to retrive the row data of this button thanks.

A: 

Try using FindControl.

See this example:http://www.jigar.net/articles/viewhtmlcontent4.aspx

samer
+1  A: 

Here is an msdn example of how to this
One more sample with simple code.

Binoj Antony