I have following controller
public ActionResult Dashboard()
{
return View(db.AB_Product_vs_Field.ToList());
}
I'm getting following view for above controller method which is containing with HTML tags(actually those field's values are saved in database with HTML tags)
How can I remove these html tags and show just the plain text.what's the least and simple effort for this
