开发者

FCKeditor: displays the formating characters along with text

have a form that uses FCKeditor. I can input with formatting, but when I bring back what I put in FCKeditor it also displays the raw html fo开发者_StackOverflowrmat syntax. I.E.

<p>&lt;p&gt;&amp; Question: is there a setting I'm missing that uses the formatting to format the text instead of displaying the formatting syntax along with the text? thanks Randy


i dont know whether you are using ASP.net C# or not but if yes then first import

using System.Text.RegularExpressions;
using FredCK.FCKeditorV2;

these two things and then where you are retrieving your value from fckeditor then use

string fckContent = Regex.Replace(FCKEditorID.value, @"<(.|\n)*?>", string.Empty);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜