I'm working with Telerik Grid and I want to have a column using the Template to acces to other accion. The code I have in the Grid is :
columnas.Template(o => 
{
    %>
       <%=Html.ActionLink("Texto","Prueba","Peticion", new { id= o.PeticionID }) %>
    <%
}).Title("Prueba");  
When I run the application I get the error:
CS1525: Invalid expression term ')'
And it show the { character after o =>
Any idea about what I'm missing?