I am new to web development. I am using jquery templates and they work fine. However, I have a markup code which has stuff like this among other things:
@Html.ActionLink("MyAction", "MyControllerAction", "MyController")
<div class="date">
Posted on : ${DatePosted}
<br />
Modified on: ${DateModified}
<br />
</div>
Now, the razor syntax above is of course not going to be interpreted correctly on client side. Is there any way to make razor syntax work in a jquery template? Any alternative way other than hard-coding the anchor? Does it even provide any benefit, using the html helper in the template?
Thanks!