Home All Groups Group Topic Archive Search About
Author
4 May 2005 8:40 PM
Bob Weiner
Ok, how about just one of the previous questions.  Here are the columns in
my datagrid:

<Columns>
  <asp:BoundColumn Visible="False" DataField="FQFN"
HeaderText="FQFN"></asp:BoundColumn>
  <asp:BoundColumn DataField="FileName"
HeaderText="Submitted"></asp:BoundColumn>
  <asp:ButtonColumn Text="View"></asp:ButtonColumn>
  <asp:ButtonColumn Text="Download"></asp:ButtonColumn>
</Columns>

How can my handler differentiate between the View and the Download columns?

bob

Author
4 May 2005 9:20 PM
Brock Allen
DataGrid.Columns[2] and DataGrid.Columns[3] if I've counted them correctly.

-Brock
DevelopMentor
http://staff.develop.com/ballen



Show quoteHide quote
> Ok, how about just one of the previous questions.  Here are the
> columns in my datagrid:
>
> <Columns>
> <asp:BoundColumn Visible="False" DataField="FQFN"
> HeaderText="FQFN"></asp:BoundColumn>
> <asp:BoundColumn DataField="FileName"
> HeaderText="Submitted"></asp:BoundColumn>
> <asp:ButtonColumn Text="View"></asp:ButtonColumn>
> <asp:ButtonColumn Text="Download"></asp:ButtonColumn>
> </Columns>
> How can my handler differentiate between the View and the Download
> columns?
>
> bob
>