Hi,
Here is my code that is not working. Please let me know how I could correct the code.
<script id="rowTemplate" type="text/x-template">
<tr>
....
<td class="details">
@Html.ActionLink("Verify", "VerifyBook", "Verfiy", new {bookId="${Id}"}, new { @class = "btn-primary" })
</td>
</tr>
</script>
[HttpPost]
public ActionResult VerifyBook(string bookId)
{
...
}