本文介绍了创建格式编辑器以发送邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我需要使用格式编辑器发送邮件预先感谢

Hi
i need to send mail with formatting Editor thanks in advance

推荐答案


<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server" BasePath="~/fckeditor1/">
                 </FCKeditorV2:FCKeditor>



在后面的代码中,您可以像下面这样使用此FCKeditor值:-

mail.Body = FCKeditor1.Value.ToString();


对于所有这些,您必须参考FredCK.FCKeditorV2.dll



In your code behind you can use this FCKeditor value like this :-

mail.Body = FCKeditor1.Value.ToString();


For all this you have to take the reference of FredCK.FCKeditorV2.dll


这篇关于创建格式编辑器以发送邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 07:04