return View();//返回到请求页面
return PartialView("Index");//跳转到指定页面
return PartialView("Index", model);//跳转到指定页面,带参数
return RedirectToAction("Index");//跳转到当前Controller指定页面
return RedirectToAction("Index", "Home");//跳转到指定的Controller下指定的页面
return View();//返回到请求页面
return PartialView("Index");//跳转到指定页面
return PartialView("Index", model);//跳转到指定页面,带参数
return RedirectToAction("Index");//跳转到当前Controller指定页面
return RedirectToAction("Index", "Home");//跳转到指定的Controller下指定的页面