Ejemplo n.º 1
0
    protected void BtnFollow_Click(object sender, EventArgs e)
    {
        MembershipUser currentUser   = Membership.GetUser();
        Guid           currentUserId = (Guid)currentUser.ProviderUserKey;;

        string userId      = ((Label)FVUserInfoShow.FindControl("UserIdLabel")).Text;
        string profileName = ((Label)FVUserInfoShow.FindControl("UserNameLabel")).Text;

        string ConnectionString = Checks.getConnectionString();
        //follow insert
        string insertSqlBtnFollow = "INSERT INTO Cus_Followers2(UserId, UserName, ProfileName, FUserId, FUserName, FProfileName) VALUES(@UserId, @UserName, @ProfileName, @FUserId, @FUserName, @FProfileName)";


        //notofication insert
        string insertSqlNotif = "INSERT INTO Cus_Notif(UserId, UserName, ProfileName, NotifBody, IsRead) VALUES(@UserId, @UserName, @ProfileName, @NotifBody, @isRead)";

        using (SqlConnection myConnection = new SqlConnection(ConnectionString))
        {
            myConnection.Open();

            //followers
            SqlCommand BtnFollow = new SqlCommand(insertSqlBtnFollow, myConnection);

            BtnFollow.Parameters.AddWithValue("@UserId", currentUserId);
            BtnFollow.Parameters.AddWithValue("@UserName", currentUser.ToString());
            BtnFollow.Parameters.AddWithValue("@ProfileName", currentUser.ToString());
            BtnFollow.Parameters.AddWithValue("@FUserId", userId);
            BtnFollow.Parameters.AddWithValue("@FUserName", profileName);
            BtnFollow.Parameters.AddWithValue("@FProfileName", profileName);
            BtnFollow.ExecuteNonQuery();



            //notif
            SqlCommand Notif     = new SqlCommand(insertSqlNotif, myConnection);
            string     notifBody = "started following you";
            string     isRead    = "NEW";
            Notif.Parameters.AddWithValue("@UserId", currentUserId);
            Notif.Parameters.AddWithValue("@UserName", profileName);
            Notif.Parameters.AddWithValue("@ProfileName", currentUser.ToString());
            Notif.Parameters.AddWithValue("@NotifBody", notifBody);
            Notif.Parameters.AddWithValue("@isRead", isRead);
            Notif.ExecuteNonQuery();
        }


        Page.Response.Redirect(Page.Request.Url.ToString(), true);
    }
Ejemplo n.º 2
0
    protected void FVUserInfoShow_DataBound1(object sender, EventArgs e)
    {
        if (FVUserInfoShow.DataItemCount == 0)
        {
            Response.Redirect("~/404.aspx");
        }
        string qstr = Request.QueryString["user"];
        MembershipUserCollection users = Membership.GetAllUsers();

        foreach (MembershipUser user in users)
        {
            if (user.UserName == qstr)
            {
                if (user.IsOnline)
                {
                    Label lblUserOnline = FVUserInfoShow.FindControl("lblUserOnl") as Label;
                    lblUserOnline.ForeColor = Color.Green;
                    lblUserOnline.Text      = "(Online)";
                }
            }
        }
    }