2014-12-05 141 views
0

我有一個asp按鈕,並且在單擊事件上設置了會話變量並且頁面被重定向。問題是這個過程需要兩次點擊 - 一次設置會話,另一次重定向。如何設置會話並單擊重定向?我的代碼如下:設置會話變量時阻止頁面重新加載

protected void btn_login_Click(object sender, EventArgs e) 
{ 
     HttpContext.Current.RewritePath("AnotherPage.aspx"); 
     Session.Add("user-id", _id); 
} 
+0

第一屆添加,然後重定向 – Tushar 2014-12-05 21:31:43

回答

0
protected void btn_login_Click(object sender, EventArgs e) 
{  
    Session.Add("user-id", _id); 
    Response.Redirect("AnotherPage.aspx"); 
} 
相關問題