KingAce Posted June 30, 2005 Posted June 30, 2005 How can I find the last row in a datatable through code? For example, lets say in table "TBL" there are the records ID Name 1 Name1 2 Name2 3 Name3 Through code, how can I find Name3 (without knowing that there are only 3 rows in the datatable)? TIA Quote
samsmithnz Posted June 30, 2005 Posted June 30, 2005 datatable.rows(datatable.rows.count-1).item("name").tostring Quote Thanks Sam http://www.samsmith.co.nz
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.