T TomislaW Jan 5, 2005 #1 I have asp:table that is binding from database sometimes i need to remove all from table how to do that?
I have asp:table that is binding from database sometimes i need to remove all from table how to do that?
? =?ISO-8859-1?Q?=22Anders_Nor=E5s_=5BMCAD=5D=22?= Jan 5, 2005 #2 I have asp:table that is binding from database sometimes i need to remove all from table how to do that? Click to expand... Call the Clear method on the Rows property of the control to remove all the rows from the table. myTable.Rows.Clear(); Anders Norås http://dotnetjunkies.com/weblog/anoras/
I have asp:table that is binding from database sometimes i need to remove all from table how to do that? Click to expand... Call the Clear method on the Rows property of the control to remove all the rows from the table. myTable.Rows.Clear(); Anders Norås http://dotnetjunkies.com/weblog/anoras/