1
Answer

multiple URLs to one action method in asp.net mvc

Sagar Naikele

Sagar Naikele

8y
230
1
  • What is the need of giving multiple URLs to one action method or/and controller?
  •  
    [Route("Users/about")]
    [Route("Users/aboutme")] 
    [Route("Users/myinfo")]  
    public ActionResult GotoAbout()
    {
    .
    .
    .} 
Answers (1)