Datagrid and edit linkbutton

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ravikanth
    New Member
    • Aug 2006
    • 1

    Datagrid and edit linkbutton

    My doubt is How can we display the data of a particular row into a text box when we click on the edit linkbutton in the datagrid.... i would be very thankful to the people who ever can clarify this doubt of mine
  • rajchekar
    New Member
    • Aug 2006
    • 1

    #2
    Hi ravi,
    To get a particular value in data Grid you should write the code in
    DataGrid's Edit Command Event, you just try the code below

    dim strvalue as string

    strvalue=e.item .cells(0).text

    u can specify the cell index which value u want, that value will be stored in strrvalue.

    I hope this may helps u
    Regards,
    RAJU

    Comment

    Working...