Try the following: use this route as a route:
routes.MapRoute( "HomeVerbNounRoute", "{controller}/{verb}/{noun}/{id}", new { controller = "Home", action = "{verb}"+"{noun}", id = UrlParameter.Optional } );
Then you just put your actionresult method:
public ActionResult editteam(int id){}
Into Controllers / HomeController.cs and will be called when the URL matches the provided route.
source share