In my experience it seems that there is a lot of duplication of html in server and client side templates. By client side I mean something like Jquery templates, and by server-side I'm mean using server-side variables with html.
In the code below the foreach loop gets executed on every page load and is used to create a list of items. Notice that it surrounds a block of html with variable placeholders that are used for dynamic values.
Below the foreach loop we have a Jquery template with the exact same html structure, the only thing that differs is the variable syntax.
Is there way to "merge" it so I don't have to repeat the same html markup structure in both cases? It just seems wrong having to use the exact same html block in both cases.
ex
<h1>Portfolio's</h1>
<ul id="portfolioList" class="portfolio">
<% foreach (Portfolio p in Portfolios)
{ %>
<li>
<span class="delete">[X] </span>
<a href="/portfolioDetails.aspx?p=<%=p.PortfolioId %>"><%=p.Name %></a>
</li>
<% } %>
</ul>
<!-- portfolio template -->
<script id="portfolioTemplate" type="text/x-jquery-tmpl">
<li>
<span class="delete">[X] </span>
<a href="/portfolioDetails.aspx?p=${PortfolioId}">${Name}</a>
</li>
</script>