如何在詳細頁面中設置後退按鈕以引用用戶查看的前一頁(訂單頁面列表)。 在我的情況下,我有三個頁面使用查詢字符串來獲取頁面(訂單頁面列表)。爲了頁面的列表返回當前會話的上一頁
aspx.cs文件:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
BindOrderList(Request.QueryString["order"]);
}
}
protected void pending(object sender, EventArgs e)
{
Response.Redirect("OrderHistory.aspx?order=pending", true);
}
protected void confirmed(object sender, EventArgs e)
{
Response.Redirect("OrderHistory.aspx?order=confirmed", true);
}
protected void rejected(object sender, EventArgs e)
{
Response.Redirect("OrderHistory.aspx?order=rejected", true);
}
詳細頁面,我有用戶點擊返回,他們把以前的頁面上的一個按鈕。例如,如果他們看到已確認的訂單列表並單擊其中一個訂單查看詳細信息,則在詳細信息頁面上點擊返回按鈕,然後返回到已確認的訂單列表頁面。同樣也可以進入掛單列表頁面和拒絕訂單列表頁面。 如何在我的情況下設置後退按鈕功能,以及我需要在列表順序頁面還是詳細頁面中設置?
Thanks..i'm使用這個概念,並修改它讓它工作..再次感謝 – ima
@ima請標記答案,以便它可以關閉 –