我是 Mvc 的新手。我需要重定向到视图。我有一个views 文件夹,然后在其中有一个Rentals 文件夹,然后在Rentals 文件夹中是我要显示的DisplayInvoiceList.cshtml。我怎样才能做到这一点?
--Rentals
--DisplayInvoiceList.cshtml
[HttpPost]
public ActionResult Index(RentalCustomerViewmodel ameRentalVm)
{
try
{
conn.Open();
ameCmd.ExecuteNonQuery();
strResult = ameCmd.Parameters["RETURNVALUE"].Value.ToString();
if (strResult == "1")
{
if (conn.State == ConnectionState.Open)
{
conn.Close();
}
//redirect the page
RedirectToAction("DisplayInvoiceList", "Rental");
}
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
}
return View();
}
[HttpGet]
public ActionResult DisplayInvoiceList()
{
return View();
}