Hi,
Yes, sure. You can for example modify MessageBoardViewer web part and add input control form (BoardMsgEdit) into ~\CMSWebParts\MessageBoards\MessageBoardViewer.ascx file.
Please add following code in the MessageBoardViewer web part file .ascx and .cs:
<%@ Register Src="~/CMSModules/MessageBoards/Controls/Messages/MessageEdit.ascx" TagName="BoardMsgEdit"
TagPrefix="cms" %>
<cms:BoardMsgEdit ID="msgEdit" runat="server" AdvancedMode="false" EnableViewState="true" Visible="true" />
protected void Page_PreRender(object sender, EventArgs e){
repMessages.DataSource = boardDataSource.DataSource;
repMessages.DataBind();
}
Best Regards,
Miroslav Remias.