1
Reply

multiple URLs to one action method in asp.net mvc

Ask a question
  • 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)