protected void RenderConversationTopic()
        {
            string text = string.Empty;

            if (ConversationUtilities.IsSmsConversation(this.conversation))
            {
                text = ConversationUtilities.GenerateSmsConversationTitle(this.sentItemsFolderId, this.conversation);
            }
            if (string.IsNullOrEmpty(text))
            {
                text = this.conversation.Topic;
            }
            Utilities.SanitizeHtmlEncode(ConversationUtilities.MaskConversationSubject(text), base.Response.Output);
        }