I don't want to use a GridView because that renders tables.
I had got as far as using a ListView which can be used easily with the DataPager, http://www.4guysfromrolla.com/articles/021308-1.aspx but of course when I tried it I discovered that the ISearchResults interface does not implement ICollection the ListView cannot be bound to it if paging is in use.
Does anyone have any advice because at the moment it looks like I'll have to go down the Repeater route?
If it helps anyone else, I ended up using the IEnumerable methods Skip & Take to just select the results I wanted to display and implemented my own paging:
Examine search, ICollection
I've been watching the video on setting up a site search with Examine and it's got me up to speed very quickly.
I wanted to implement some paging in my user control macro but the Repeater control doesn't come with it and requires a bit more coding http://www.4guysfromrolla.com/articles/081804-1.aspx.
I don't want to use a GridView because that renders tables.
I had got as far as using a ListView which can be used easily with the DataPager, http://www.4guysfromrolla.com/articles/021308-1.aspx but of course when I tried it I discovered that the ISearchResults interface does not implement ICollection the ListView cannot be bound to it if paging is in use.
Does anyone have any advice because at the moment it looks like I'll have to go down the Repeater route?
If it helps anyone else, I ended up using the IEnumerable methods Skip & Take to just select the results I wanted to display and implemented my own paging:
Just convert the IEnumerable list to an Array:
is working on a reply...