Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将页面重定向到“Customer/MyReservation.aspx”。下面的代码重定向到“Customer/Reservation/MyReservation.aspx”。如何正确重定向。
Response.Redirect("MyReservation.aspx")
在将页面重定向到MyReservation.aspx之前,您位于Customer/Reservation文件夹中
所以首先你必须去你的父目录,即客户
使用以下代码
Response.Redirect("../MyReservation.aspx");
代替Response.Redirect("MyReservation.aspx");
Response.Redirect("MyReservation.aspx");