Hi,
Do I have to manually pass my strongly typed viewdata to the call return View(); ?
ie.
MyViewData vd = new MyViewData();
vd.Blah = "asdf asdfsd";
return View();
It seems if I pass it as a parameter, I have to repeat the view name also?
return View("index", vd);