如何从asp.net中的ckeditor获取HTML源代码?

时间:2012-11-02 10:48:03

标签: asp.net

如何从asp.net中的 ckeditor 中获取 HTML * 来源 *?我想把它变成一个字符串变量。

2 个答案:

答案 0 :(得分:1)

我认为你的意思是CKEditor control for ASP.NET

<CKEditor:CKEditorControl ID="chkContent" runat="server" Height="400" Width="800">
</CKEditor:CKEditorControl>

string content = chkContent.Text

答案 1 :(得分:1)