我正在尝试在ASP.NET内容页面中使用tinymce。我在VisualStudio2008中运行它时代码有效。当我将它部署到IIS时,我收到一个javascript错误'错误:'tinyMCE'未定义'
<script src="tinymce/jscripts/tiny_mce/tiny_mce.js" type="text/javascript"></script>
<script type="text/javascript">
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
// Skin options
skin : "o2k7",
skin_variant : "silver",
// Example content CSS (should be your site CSS)
content_css : "css/example.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "js/template_list.js",
external_link_list_url : "js/link_list.js",
external_image_list_url : "js/image_list.js",
media_external_list_url : "js/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
</script>
<textarea id="txtareaEmailEditor" name="content" rows="30" cols="100" runat="server" ></textarea>
编辑:我跑了萤火虫,看着网下的标签,它有
GET tiny_mce.js 503 Service Unavailable
UPDATE 我将脚本移动到了应用程序文件夹,并且摆脱了503错误,但我仍然得到了未定义的错误。
<script src="tiny_mce.js" type="text/javascript"></script>
这是我在IIS中的地址 http://svr-app-d1/MailServiceWeb/EmailTemplateEditor.aspx
我在这里得到了一位资深开发人员的帮助,他做了这些修改,现在就可以了 IIS - &gt; ASP EnableParentPaths = true IIS - &gt; Handler Mappings StaticFile已启用
答案 0 :(得分:2)
路径tinymce/jscripts/tiny_mce/tiny_mce.js
相对于您正在查看的页面。因此,当您在本地查看它时,您可能正在从IIS中的其他路径查看它。请尝试使用绝对路径:
/tinymce/jscripts/tiny_mce/tiny_mce.js
更新后的问题更新后的答案:
我将脚本移动到了应用程序文件夹...
<script src="tiny_mce.js" type="text/javascript"></script>
我在IIS中的地址是svr-app-d1/MailServiceWeb/EmailTemplateEditor.aspx
请改用<script src="/tiny_mce.js" type="text/javascript"></script>
。注意前面的/
。这使路径绝对。
说明:
当您在svr-app-d1/MailServiceWeb/EmailTemplateEditor.aspx
访问您的网页时,它正在tiny_mce.js
目录中查找MailServiceWeb
(如您所知,这是不正确的)。
答案 1 :(得分:2)
我在这里得到了一位资深开发人员的帮助,他做了这些修改,现在可以使用IIS - &gt; ASP EnableParentPaths = true IIS - &gt; Handler Mappings StaticFile启用