Ejemplo n.º 1
0
        // *********************************************************************
        //  ApprovePostAndEdit_Click
        //
        /// <summary>
        /// Event handler to edit a post
        /// </summary>
        // ***********************************************************************/
        public void ApprovePostAndEdit_Click(Object sender, CommandEventArgs e)
        {
            // Approve the post
            Moderate.ApprovePost(PostID, ForumUser.Username);

            // Now go the edit view
            HttpContext.Current.Response.Redirect(Globals.UrlEditPost + PostID);
            HttpContext.Current.Response.End();
        }
Ejemplo n.º 2
0
        // *********************************************************************
        //  ApprovePostAndMove_Changed
        //
        /// <summary>
        /// Event handler to approve and move a post
        /// </summary>
        // ***********************************************************************/
        public void ApprovePostAndMove_Changed(Object sender, EventArgs e)
        {
            MovedPostStatus status;

            // Move the post
            status = Moderate.MovePost(PostID, Convert.ToInt32(approvePostAndMove.SelectedItem.Value.Replace("f-", "")), ForumUser.Username, true);

            // Approve the post
            if (status != MovedPostStatus.NotMoved)
            {
                Moderate.ApprovePost(PostID, ForumUser.Username);
            }
        }
Ejemplo n.º 3
0
 // *********************************************************************
 //  ApprovePostAndTurnOffModeration_Click
 //
 /// <summary>
 /// Event handler to approve a post and turn off moderation
 /// </summary>
 // ***********************************************************************/
 public void ApprovePostAndTurnOffModeration_Click(Object sender, CommandEventArgs e)
 {
     // Approve the post and turn off moderation for this user
     Moderate.ApprovePost(PostID, ForumUser.Username, UsernamePostedBy);
 }
Ejemplo n.º 4
0
 // *********************************************************************
 //  ApprovePost_Click
 //
 /// <summary>
 /// Event handler to approve posts
 /// </summary>
 // ***********************************************************************/
 public void ApprovePost_Click(Object sender, CommandEventArgs e)
 {
     // Approve the post
     Moderate.ApprovePost(PostID, ForumUser.Username);
 }