protected void Page_Load(object sender, EventArgs e) { if (Session["username"].ToString() == "" || Session["username"] == null) { Response.Redirect("~/Zaloguj.aspx"); } String friendid = Request.QueryString["userid"]; String username = Request.QueryString["username"]; String userid = Session["userid"].ToString(); bool result = Usr.AddFriend(userid, friendid); if (result) { lblMsg.Text = "[" + username + "] został dodany do listy ulubionych. Przejdź <a href='javascript:history.back()'>tutaj</a> aby znaleźć ich jeszcze więcej!"; } else { lblMsg.Text = "[" + username + "] nie mógł być dodany do ulubionych! Przejdź <a href='javascript:history.back()'>tutaj</a> aby spróbować jeszcze raz ."; } }