Hello,
Imagine I have a PartialView displaying a list of articles. And I have a Repository/DAL function get me the newest (or whatever) 100 Articles. Now I want to display these articles using a grid in 5 columns. How can I display the first 5 in the first column, the next 5 in the next column an so on using that partial view. Ok I could put the list in ViewData and tell the PartialView something like skip(x).take(y). But what if the PartialView decides how much to display? (e.g. depeding on lenght of text)
Is TempData the right place where I could place a Index or something like that?
thanks, Lothar