Html.ActionLink WebFx bug# 246 is fixed now. Enabling the code to use the helper.

This commit is contained in:
Praburaj 2014-04-15 16:49:46 -07:00
parent 843c952928
commit 348d4a11de
1 changed files with 1 additions and 3 deletions

View File

@ -26,8 +26,6 @@
@Html.ValueFor(model => model.Price)
</p>
<p class="button">
@*https://github.com/aspnet/WebFx/issues/246*@
@*@Html.ActionLink("Add to cart", "AddToCart", "ShoppingCart", new { id = Model.AlbumId })*@
<a href="@Url.Action("AddToCart", "ShoppingCart", new { id = Model.AlbumId })">Add to cart</a>
@Html.ActionLink("Add to cart", "AddToCart", "ShoppingCart", new { id = Model.AlbumId })
</p>
</div>