NET MVC4 with Entity Framework. I am trying Rating control, for that I am using @Url.Action
. Now i have to convert action link to star image button. Please anyone give me an idea to getit.
This is my code:
<a href="@Url.Action("rated/4", "Rating")">Half</a>
<a href="@Url.Action("rated/5", "Rating")">One</a>
<a href="@Url.Action("rated/6", "Rating")">One and Half</a>
<a href="@Url.Action("rated/7", "Rating")">Two</a>
<a href="@Url.Action("rated/8", "Rating")">Two and half</a>
routeValues
to pass your rating value. – Samellasameness