// // GET: /Bootstrap3/Mvc/BootstrapHtml public virtual ActionResult BootstrapHtml(bool?msg) { CoreHtmlViewModel model = new CoreHtmlViewModel { SomeProperty = "Blah blah", ShowMessage = msg.HasValue }; return(View(model)); }
// // GET: /Bootstrap3/Mvc/CoreHtml public virtual ActionResult CoreHtml() { CoreHtmlViewModel model = new CoreHtmlViewModel { SomeProperty = "Blah blah", ShowMessage = false }; return(View(model)); }