Create forum threads
This topic contains the following:
- Creating an empty thread
- Creating a thread with a first post
Creating an empty
To create an empty thread , you must perform the following:
- Get an instance of the manager.
Get instance of theForumsManagerobject. - Create a new thread.
To create a new thread, call theCreateThreadmethod of the manager. - Set the properties.
Set the properties of theForumThreadinstance. For more information about the specific properties, read For developers: Forum threads. - Add the thread to a forum.
To add the thread to a forum, set the Forum property of theForumThreadinstance to an instance of a forum. - Publish the thread.
To publish the thread, set theIsPublishedproperty to true. - Save the changes.
Save the changes to the manager.
Here is a code example: ```C# using System; using System.Text.RegularExpressions; using Telerik.Sitefinity.Forums; using Telerik.Sitefinity.Forums.Model;
namespace Telerik.Sitefinity.Documentation.CodeSnippets.DevGuide.SitefinityEssentials.Modules.Forums.Threads { public partial class ForumThreadsSnippets { public static void CreateThread(string threadTitle, Guid forumId) { ForumsManager forumsManager = ForumsManager.GetManager();
ForumThread thread = forumsManager.CreateThread();
thread.Title = threadTitle;
thread.UrlName = Regex.Replace(threadTitle.ToLower(), @"[^\w\-\!\$\'\(\)\=\@\d_]+", "-");
thread.Forum = forumsManager.GetForum(forumId);
thread.LastModified = DateTime.UtcNow;
thread.IsPublished = true;
forumsManager.RecompileItemUrls<ForumThread>(thread);
forumsManager.SaveChanges();
}
}
}
## Creating a thread with a first post
To create a thread with a first post, you must perform the following:
1. Get an instance of the manager.
Get instance of the `ForumsManager` object.
2. Create a new thread.
To create a new thread, call the `CreateThreadWithPost` method of the manager and pass the instance of the forum, the title of the thread and the contents of the post as arguments. This method handles the creating of a thread and a post in it.
3. Save the changes.
Save the changes to the manager.
Here is a code example: ```C#
using System;
using Telerik.Sitefinity.Forums;
using Telerik.Sitefinity.Forums.Model;
namespace Telerik.Sitefinity.Documentation.CodeSnippets.DevGuide.SitefinityEssentials.Modules.Forums.Threads
{
public partial class ForumThreadsSnippets
{
public static void CreateThreadWithFirstPost(string threadTitle, string postContent, Guid forumId)
{
ForumsManager forumsManager = ForumsManager.GetManager();
var forum = forumsManager.GetForum(forumId);
ForumThread thread = forumsManager.CreateThreadWithPost(forum, threadTitle, postContent);
forumsManager.RecompileItemUrls(thread);
forumsManager.SaveChanges();
}
}
}
Want to learn more?
Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.
Get started with Integration Hub | Sitefinity Cloud
This free lesson teaches administrators, marketers, and other business professionals how to use Sitefinity Integration Hub to create automated workflows between Sitefinity and other business systems.
Web Security for Sitefinity Administrators
This free lesson teaches administrators the basics about protecting your Sitefinity instance and your sites from external threats. Configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.
Foundations of Sitefinity ASP.NET Core Development
The free on-demand video course teaches developers how to use Sitefinity ASP.NET Core and take advantage of its decoupled architecture and modern development model.