I have mostly static view pages, for example:
http://www.yoursite.com/games/x-box-360/nba-2k-11.aspx
http://www.yoursite.com/games/psp/ben-10.aspx
How can I construct this in my controller? This is what I coded earlier in my games controller:
[HandleError]
public class GamesController : Controller
{
public ActionResult ben-10()
{
return View();
}
}
But it gives me an error because of the hyphen in the controller action name.
How do I resolve this?