hello all,
I have a datagrid with a bunch of columns, the last column is a template column of checkboxes and the footer of the column is a button. below is the code for the column.
Code:
					<asp:TemplateColumn HeaderText="Request">
	<HeaderStyle HorizontalAlign="Center"></HeaderStyle>
	<FooterStyle HorizontalAlign=Center></FooterStyle>
	<FooterTemplate>
	<asp:Button Text="Request" Runat=server ID=ButtonRequest></asp:Button>
	</FooterTemplate>
	<ItemStyle HorizontalAlign="Center" Width="5%"></ItemStyle>				<ItemTemplate>
	<asp:CheckBox id="CheckRequest" Runat="server" />
	</ItemTemplate>
	</asp:TemplateColumn>
When the user clicks the button, I wanna know which checkboxes are checked. Thanks in advance.

David