私はMvcが初めてです。ビューへのリダイレクトを行う必要があります。ビュー フォルダーがあり、その中に 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();
}