up vote 0 down vote favorite
share [g+] share [fb]

Is there a way with ASP.NET to tell a data repeater which is working against a objectDataSource to only show the first row and not any others that are returned in the objectDataSource.

I can't limit the data source to one row as it's echo'ing to a grid above the repeater.

Forgive me if this is a stupid question!

Thanks in advance

C

link|improve this question

75% accept rate
Thanks for the type fix Ahmad. – Chris M Nov 4 '09 at 22:28
feedback

1 Answer

up vote 1 down vote accepted

in your repeater event handler you can use the event object to see what number the item in the collection you are on.

So you can say if that number > 0 or 1 or whatever it is, render, if not, do nothing.

It's been a really long time since I've used .NET, but I know you can lookup the index of the item in the ItemDataBound event.

link|improve this answer
Great, this got me to the answer. I used the ItemDataBound as you suggested and then added this method in the code behind protected void ForceStopAfterFirstBind(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemIndex > 0) { e.Item.Controls.Clear(); } } – Chris M Nov 4 '09 at 22:26
feedback

Your Answer

 
or
required, but never shown

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