温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:LiveBlog v1.0测试版源码
当前文件:
LiveBlog/LiveBlog.Web/Admin/Editor.ascx,打开代码结构图
LiveBlog/LiveBlog.Web/Admin/Editor.ascx,打开代码结构图1<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Editor.ascx.cs" Inherits="admin_Editor" %> 2
<%@ Import Namespace="LiveBlog.Core" %> 3
<%@ Import Namespace="LiveBlog.Core.Web.Controls" %> 4
5
6
<!-- TinyMCE --> 7
<script type="text/javascript" src="<%=Utils.RelativeWebRoot %>editors/tiny_mce/js.axd?path=<%=Server.UrlEncode(Utils.RelativeWebRoot) %>editors%2ftiny_mce%2ftiny_mce.js"></script> 8
<script type="text/javascript"> 9
tinyMCE.init({ 10
// General options 11
mode : "exact", 12
theme : "advanced", 13
elements : "<%=txtContent.ClientID %>", 14
plugins : "safari,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", 15
16
// Theme options 17
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect", 18
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", 19
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen", 20
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak", 21
theme_advanced_toolbar_location : "top", 22
theme_advanced_toolbar_align : "left", 23
theme_advanced_statusbar_location : "bottom", 24
theme_advanced_resizing : true, 25
26
// Example content CSS (should be your site CSS) 27
content_css : "css/content.css", 28
29
// Drop lists for link/image/media/template dialogs 30
template_external_list_url : "lists/template_list.js", 31
external_link_list_url : "lists/link_list.js", 32
external_image_list_url : "lists/image_list.js", 33
media_external_list_url : "lists/media_list.js", 34
35
// Replace values for the template plugin 36
template_replace_values : { 37
username : "Some User", 38
staffid : "991234" 39
} 40
}); 41
</script> 42
<!-- /TinyMCE --> 43
44
<asp:TextBox runat="Server" ID="txtContent" TextMode="MultiLine" />




tinyMCE.init(
}
}