I have repetitious markup for elements, like:
<div class="box">
<div class="top"></div>
<div class="content">
content goes here
</div>
<div class="bottom"></div>
</div>
Top and bottom are styled with css to include images for borders.
I could use JQuery to inject tags, but is there a better way to template controls in asp.net mvc?
Thank you