vote up 0 vote down star

May be the subject is complicated, so I'll try to explain:

I get some data from database which some of them has TypeId=1 and some has TypeId=2. I want to take data which TypeId=1 to header template and TypeId=2 to itemtemplate in the Datalist control.

How can I do it?

flag

78% accept rate

2 Answers

vote up 0 vote down

You can use a DataView to get a subset of the data in a DataTable and then bind that to the DataList for the item content, but you'll have to manually insert the data into the heading by attaching to the ItemDataBound event and looking for the ListItemType of Header.

link|flag
vote up 0 vote down

Can you show a simple code about inserting data into headertemplate in the itemdatabound event?

link|flag

Your Answer

Get an OpenID
or

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