Hello i am new in MVC C#, and have some issues
I have controller like this
public class HomeController : Controller
{
//
// GET: /Home/
public ActionResult Index()
{
return View();
}
}
I want to pass some varible like HOME to current view, how to accomplish that, and how to show that in view? lik @what