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フォルダーにいます。
したがって、最初に親ディレクトリ、つまりCustomerに移動する必要があります
次のコードを使用します
Response.Redirect("../MyReservation.aspx");
それ以外のResponse.Redirect("MyReservation.aspx");
Response.Redirect("MyReservation.aspx");