0

私は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();
            }
4

2 に答える 2

0
[HttpGet]
public ActionResult DisplayInvoiceList()
{
     return View("Rentals/DisplayInvoiceList");
}
于 2013-08-09T21:51:02.203 に答える