Facing problem while using "View data layout" So Please help me. Code are given below. Its showing redline on view data
public class Home1Controller : Controller
{
[ViewData]
public string Message { get; set; }
public ActionResult Index()
{
Message = "Hello";
return View();
}
}