How to render partial(with Html.RenderPartial()) again and again.
Or How to use html.Action("","") to render a partial (by calling an action which is returning partial view ) again and again.
|
How to render partial(with Or How to use
| ||||
|
feedback
|
|
As per my understanding, you need to display ParialView many times on page. if this is your question then you have some thing like a collection which tells that how many time you want to render partialview on page. | |||
|
feedback
|
|
You can use jQuery's Place some html elements (
add something like:
Ajax helper is good, but I found it somewhat limited for some kind of stuffs. I prefer to store data inside DOM elements and then use jQuery for building up the urls (that piece of code is simplified, none would add a &name=value without checking it first) PS: writing this without having the chance to test it, but should at least give an idea on how to do this. | |||
|
feedback
|
Html.ActionLink(...)has nothing to do with renderPartialorAction. Did u meanHtml.Action(...)orHtml.RenderAction(...)?. Anyway just make a loop and put your Render helper in it something like @satish kumar answer. – Wahid Bitar Dec 22 '11 at 17:40