Ajax.ActionLink與Ajax.BeginForm使用場所的思考

Ajax.ActionLink使用在提交參數明確的狀況下,如:ajax

Ajax.ActionLink("加入購物車", "AddToCart", "Cart", new { GoodsId = 3, Amount = 10 }, ajaxOption, new { @class = "btn" })orm

這裏的提交參數GoodsId及Amount值是可肯定的。input

Ajax.BeginForm使用在提交參數可能變化的場所,好比參數的值是用戶選擇的。如:it

@using (Ajax.BeginForm("AddToCart", "Cart", ajaxOption))
            {io

                 <input name="GoodsId" id="GoodsId" value="@Model.Goods.First().Id" type="hidden">class

                 <input name="Amount" id="Amount" value="1" type="text">new

                 <input id="addtocart" class="btn" type="submit" value="加入購物車" />參數

             }

相關文章
相關標籤/搜索