Hi,
I have set up a tinyMCE textBox on an emtpy form. I will now save some written text to a .txt file. When I press the button, I receive an error page and the .txt file is not created.
However if I dont write anything in the textBox and press the button, then the .txt file is created and the messageBox is shown.
<script src='<%= ResolveUrl("~/jscripts/tiny_mce/tiny_mce.js")%>' type="text/javascript"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
theme: "advanced",
mode: "textareas",
plugins: "emotions",
force_br_newlines: "true",
theme_advanced_buttons1_add: "emotions,bullist,numlist,undo,redo,link,unlink,code,image,|,forecolor,backcolor,image",
theme_advanced_disable: &quo ...
Go to the complete details ...