hi,
I am using PARTIAL VIEW. I am getting value in the model if i keep debugger but value is not getting displayed in the page
@foreach (var prod in Model.products)
{
<tr>
<td>@prod.Name.ToString()</td>
<td>@prod.Cost.ToString()</td>
</tr>
}
asd.products is holding values and those values are getting displayed in the Model.Products as well
[HttpPost]
public ActionResult Getmyproddet()
{
return PartialView("_partialproducts",asd.productdet);
}