Hi
I am trying to use anchor tag in grid column template. here is my code.
column adding.
col.Field("StudentName").Template("#stdname").HeaderText("Name").Width("120").TextAlign(TextAlign.Left).Add();
here is the template
<script type="text/x-jsrender" id="stdname">
<a rel="nofollow" rel='nofollow' href="/Students/Studentview/${StudentId}">${StudentId}</a>
</script>
the rel='nofollow' href of anchor tag is http://localhost:53126/Students/Studentview/34
while the the value of StudentId is 347. its always removing last digit/character in the rel='nofollow' href throughout the application. like if id is 4568 it skip 8 and show only 456 and so on. please help me to resolve this.