skip to Main Content

Id not getting passed to Partial View form – Asp.net

Parent View: @Html.Action("SetReview", "Review", new {sellerId = Model.SellerId}) [HttpGet] public ActionResult SetReview(string sellerId) { return PartialView("_Review", new Finder.Models.Review() { SellerId = sellerId }); } This is the part where the Id is not getting passed [HttpPost] public ActionResult SetReview(Finder.Models.Review review)…

VIEW QUESTION
Back To Top
Search