在asp.net中成功登录后,将用户重定向回源页面

时间:2014-09-22 09:25:55

标签: c# asp.net redirect

大家好,我正在为我的最后一年项目开发一个小的asp.net项目, 我正在建立一个在线购物网站。 我的网站Login.aspx,detail.aspx和mobile.aspx有三个页面 在mobile.aspx中,当用户单击详细信息按钮时,它会将用户重定向到detail.aspx页面 使用response.redirect();(此步骤没问题)。 现在在detail.aspx页面当用户点击addtoCart按钮时,页面首先检查用户是否登录(使用session [“authenticated”]!= null方法) 如果它已经登录,那么根据我的说法,每件事情都可以 现在问题是当用户没有登录并点击addtoCart按钮时,它将用户重定向到login.aspx页面 在登录页面中,当用户单击登录按钮时,它会检查用户是否从详细信息页面重定向(使用session [“productID”]!= null) 如果是的话,它应该将用户重定向回detail.aspx页面但是这样做不是我的代码请帮帮我

login.aspx的

protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
    SqlConnection connection = new SqlConnection(conn);
    connection.Open();
    cmd = new SqlCommand("select COUNT(*) from customer_login where login_id = @a and pass_login=@b",connection);
    cmd.Parameters.AddWithValue("@a", Login1.UserName);
    cmd.Parameters.AddWithValue("@b", Login1.Password);
    string user_name;
    int i = Convert.ToInt32(cmd.ExecuteScalar().ToString());

    ViewState["PreviousPage"] = Request.UrlReferrer.ToString();//to retrive the url from where it is redirected, this will be used to redirect the user from where it comes(detail.aspx)

    if (i == 1)
    {
        e.Authenticated = true;

        Session["authenticatedUser"] = Session.SessionID;
        Session["loginid"] = Login1.UserName.ToString();
        cmd = new SqlCommand("select f_name from customer where id = (select cust_id from customer_login where login_id = @a)", connection);
        cmd.Parameters.AddWithValue("@a", Login1.UserName);
        sdr = cmd.ExecuteReader();
        sdr.Read();
        user_name = sdr["f_name"].ToString();
        sdr.Close();

        if (Session["productID"] != null&&ViewState["PreviousPage"].ToString())//to check if the user is redirected from detail.aspx page
        {
            Session["user"] = user_name.ToString();
            Response.Redirect(ViewState["PreviousPage"].ToString());
        }
        else
        {
            Session["user"] = user_name.ToString(); 
            Response.Redirect("Index.aspx");
        }
    }
    else
    {
        e.Authenticated = false;
    }
}

登录的结果是它将用户重定向到index.aspx页面而不是详细页面

1 个答案:

答案 0 :(得分:0)

我在detail.aspx页面找到了我使用查询字符串的解决方案来发送源页面的网址(detail.aspx)

            Response.Redirect("~/login.aspx?redirect="+Request.Url.ToString());

然后将其检索到login.aspx

        if (Session["productID"] != null&&!string.IsNullOrEmpty(Request.QueryString["redirect"]))
        {
            Session["user"] = user_name.ToString();
            Response.Redirect(Request.QueryString["redirect"].ToString()+"&ssid="+Session["authenticatedUser"].ToString());
      //Response.Redirect(ViewState["PreviousPage"].ToString());
       // Response.Redirect("~/shop/Cart.aspx?ssid="+Session["authenticatedUser"].ToString()+"&pr="+Session["productID"].ToString());
        }
        else
        {
            Session["user"] = user_name.ToString(); 
            Response.Redirect("Default.aspx");
        }