> Hi,
>
[quoted text clipped - 6 lines]
>
> Aleko
When ListView is clicked the ItemCommand() event is raised and a
ListViewCommandEventArgs object is passed, which can be used to
retrieve control values such as an index of the current row.
protected void ListView1_ItemCommand(object sender,
ListViewCommandEventArgs e)
{
... (ListViewDataItem)e.Item.DisplayIndex
See more:
http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.listviewcomma
ndeventargs.aspx
http://msdn2.microsoft.com/en-us/library/bb398790.aspx
aleko - 22 Mar 2008 02:14 GMT
> > Hi,
>
[quoted text clipped - 19 lines]
>
> http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.li...http://m
sdn2.microsoft.com/en-us/library/bb398790.aspx
Ah, it's called DisplayIndex. Thanks very much!
-Aleko