View Single Post
  #2 (permalink)  
Old 07-22-2008, 04:39 AM
khammam khammam is offline
D-Web Trainee
 
Join Date: May 2008
Location: charlotte, north carolina, USA
Posts: 4
khammam is on a distinguished road
Default Re: checkbox in gridview

Something like this,

For i=0 to myGrid.rowsCount-1
CType(myGrid.Rows(e.RowIndex).Cells(0).FindControl ("chkTabular"), CheckBox).Checked=True;
next


This is just idea.
Reply With Quote