You are developing a controller for an ASP.NET MVC application that manages message board postings. The security protection built in to ASP.NET is preventing users from saving their HTML. You need to enable users to edit and save their HTML while maintaining existing security protection measures. Which code segment should you use?
A. [ValidateInput(false)]
public class MessageBoardController: Controller
{
public ActionResult SavePosting(MessageBoardPosting mbp)
{