Asp.net mvc route map problem
Posted
by coure06
on Stack Overflow
See other posts from Stack Overflow
or by coure06
Published on 2010-04-25T18:13:13Z
Indexed on
2010/04/25
18:33 UTC
Read the original article
Hit count: 182
asp.net-mvc
|c#
I have created a new control VidController
public class VidController : Controller
{
public ActionResult GetVids()
{
return View();
}
}
Right clicked inside the method and created View with default name GetVids. Now when i try to open ~/VidController/GetVids there is no page opening...
What i have to set in Global file?
© Stack Overflow or respective owner