我使用RadEditor显示富文本,效果很好。
现在在下一个表单中,我想使用asp:literal
显示其输出。
此asp:literal
未显示RadEditor中显示的项目符号,斜体和粗体字符。
我认为的问题:我在整个应用程序中使用的CSS类asp:literal
正在使用它。
如何禁用此默认CSS并使用显示RadEditor中每个数据的类?
这里是RadEditor输入:
<telerik:RadEditor ID = "RadSpecification" runat = "server" Height="200px"
ToolbarMode="ShowOnFocus" MaxTextLength = "4000"
AutoResizeHeight="True" ContentAreaMode="Iframe"
EmptyMessage="Product Specification" Skin="Telerik" StripFormattingOptions="None"
ToolTip="Product Specification" RenderMode="Classic"
StripFormattingOnPaste="None" EditModes="Design" Width="500px"
NewLineMode="Div" OnClientLoad ="RadEditorLoad">
<CssFiles>
<telerik:EditorCssFile Value="~/EditorContentArea.css" />
</CssFiles>
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Name = "Bold" />
<telerik:EditorTool name ="Italic" />
<telerik:EditorTool Name = "Underline" />
<telerik:EditorTool Name = "InsertUnorderedList" />
<telerik:EditorTool Name = "InsertOrderedList" />
<telerik:EditorTool Name = "JustifyLeft" />
<telerik:EditorTool Name = "JustifyRight" />
<telerik:EditorTool Name = "JustifyCenter" />
<telerik:EditorTool Name = "JustifyFull" />
<telerik:EditorTool Name = "Undo" />
<telerik:EditorTool Name = "Redo" />
<telerik:EditorTool Name = "ConvertToUpper" />
<telerik:EditorTool Name = "ConvertToLower" />
</telerik:EditorToolGroup>
</Tools>
</telerik:RadEditor>