Hi Vikas,

You can probably try this.

<asp:repeater id = "myRepeater" runat = "server" onItemCommand = "showItem" >


void showItem ( Object src, RepeaterCommandEventArgs e ) {
   items.Text = e.Item.ItemType.ToString ( ) + " " +
      e.Item.ItemIndex.ToString ( ) + ", " +
      ( ( LinkButton ) e.CommandSource ).Text + "<br>";
}


Regards
Vignesh.R.Joshi



On Tue, Mar 17, 2009 at 10:10 PM, Cerebrus <[email protected]> wrote:

>
> What is a LinkButton's value ? There is no such property, IIRC.
>
> On Mar 17, 11:37 am, vikas arora <[email protected]> wrote:
> > Hi everyone
> >
> > I have a Reapeter control
> >
> > It Has one linkbutton,one label & one imagebutton
> >
> > i need to get the the linkbutton value when i click on that
> >
> > thanx
>

Reply via email to