Specify a different action name
public class StudentController : Controller
{
public StudentController()
{
}
[ActionName("Find")]
public ActionResult GetById(int id)
{
// get student from the database
return View();
}
}