vote up 0 vote down star

I want to add a few dynamic rows right in the middle of a table which is otherwise defined in static markup. Unfortunately, Web.UI.Table has no exposed AddAt method.

It looks like I can dynamically AddAt on a Web.UI.ControlCollection, and it looks like internally, Web.UI.WebControls.Table has a RowControlCollection.AddAt method, but MSDN says that it's "not intended to be used directly from your code". Is this safe, will it work?

An alternative approach is to just nest another table inside a single placeholder TableRow, but the table is used for position/style :( so nesting a table in a row is going to cause major style problems.

flag

2 Answers

vote up 1 vote down

you can use _table.Rows.Insert(index,row)

link|flag
vote up 0 vote down

I'm not sure if MSDN is contradicting itself or not, but Table.Rows.AddAt == TableRowCollection.AddAt which is perfectly acceptable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.