Here is my Controller
:
private readonly ProductsBL _objProd = new ProductsBL();
readonly ProductModel _model = new ProductModel();
public ActionResult Index()
{
var allproducts = _objProd.GetAllProductDetails();
if (allproducts != null)
{
_model.AllProducts = allproducts;
//All Features
var featlist = new List();
foreach (var products in allproducts)
{
featlist.Add(products.Features);
}
// _model.FeaturesList = featlist;
_model.FeaturesList = featlist;
}
return View(_model);
}
How to use html decode function??
Midhun TpPosted Aug 16, 2016, 11:03 AM
{
}
Manoj MaharanaPosted Aug 16, 2016, 11:07 AM
Manoj MaharanaPosted Aug 16, 2016, 10:58 AM
{
}
Manoj MaharanaPosted Aug 16, 2016, 10:46 AM
Features:
Midhun TpPosted Aug 16, 2016, 10:39 AM
Manoj MaharanaPosted Aug 16, 2016, 10:34 AM
Midhun TpPosted Aug 16, 2016, 10:30 AM