Hi, im experiencing that my css-file that im using on my page is also used in my editor automaticly even though im using the contentareacssfile-property to add a totaly different css-file. Its very disturbing and i cant get it to work. Ive been trying for days, please help me.
This is what my aspx-file looks like:
This is what my aspx-file looks like:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Editor.aspx.cs" Inherits="TestWebApplication.Editor" %> |
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml" > |
<head runat="server"> |
<title></title> |
<link href="Stylesheet1.css" rel="stylesheet" type="text/css" /> |
</head> |
<body> |
<form id="form1" runat="server"> |
<div> |
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
<telerik:RadEditor ID="RadEditor1" Runat="server" ContentAreaCssFile="Stylesheet2.css"> |
</telerik:RadEditor> |
</div> |
</form> |
</body> |
</html> |