TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Manoj Maharana
NA
362
128k
How to use a WebUtility.HtmlDecode() function in MVC 4 .net
Aug 16 2016 10:19 AM
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<string>();
foreach (var products in allproducts)
{
featlist.Add(products.Features);
}
// _model.FeaturesList = featlist;
_model.FeaturesList = featlist;
}
return View(_model);
}
How to use html decode function??
Reply
Answers (
7
)
How to print out the summation of a column
How to export data to excel using gembox.spreedsheet dll