vote up 0 vote down star

Hi, I want a Repeater control inside a Gridview row. So how can I assign the DataSource of the Repeater control so that the data it uses is that of the specific data of the GridView row?

I tried this: DataSource='<%# Eval(Container, "DataItem.InnerVal")

but it does not work.

flag

1 Answer

vote up 2 vote down check

You will need to handle the GridView.RowDataBound event in your code-behind. This will allow you to dynamically create a Repeater and bind it to the data for the row you are on.

link|flag

Your Answer

Get an OpenID
or

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