cuteEditor.Text property is empty in IE9

Last post 05-24-2013, 2:12 PM by dekos. 2 replies.
Sort Posts: Previous Next
  •  05-24-2013, 9:39 AM 77481

    cuteEditor.Text property is empty in IE9

    Hi,

     

    I'm having difficulties while running web application using CuteEditor on VS  ASP.NET DevelopmentServer (Windows 7) and on IIS7 (Windows Server 2008 R2)

     

    When opening page in IE9 content of CuteEditor is empty.

     

    Here is code fragment of my testpage:

     

    <%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
        CodeBehind="Default.aspx.cs" Inherits="CuteEditorTest._Default" %>
     
    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
    
    <asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
    </asp:Content>
    <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
        <div>
            <CE:Editor ID="cuteEditor" EditorWysiwygModeCss="/App_Themes/default/CuteEditor.css"
                FilesPath="/CuteSoft_Client/CuteEditor" runat="server" ConfigurationPath="/CuteSoft_Client/CuteEditor/Message.config"
                Width="668" Height="180" MaxHTMLLength="3000">
            </CE:Editor>
            <br />
            <asp:Button runat="server" ID="btnCopy" Text="Move content to label" OnClick="btnCopyOnClick" />
            <br />
            <asp:Literal runat="server" ID="litCuteEditorContent" Text="default text"></asp:Literal>
        </div>
    
    </asp:Content>
     
    namespace CuteEditorTest
    {
    	public partial class _Default : System.Web.UI.Page
    	{
    		protected void Page_Load(object sender, EventArgs e)
    		{
     
    		}
    		protected void btnCopyOnClick(object sender, EventArgs e)
    		{
    			litCuteEditorContent.Text = cuteEditor.Text;
    		}
    	}
    }
    
     
     
    When I open page in IE9 cuteEditor.Text is Empty.

    In all other browsers page is working as expected.

     

    Any idea what would possibly be wrong?

    Any other way to get content of editor which will work on all browsers?

     

    Regards,

    Dekos

  •  05-24-2013, 12:20 PM 77482 in reply to 77481

    Re: cuteEditor.Text property is empty in IE9

    Hi dekos,

     

    Is your site online? If so, can you post your editor page url? so we can check it for you directly.

     

    Also, you can send it to Kenneth@CuteSoft.net

     

    Regards,

     

    Ken 

  •  05-24-2013, 2:12 PM 77485 in reply to 77482

    Re: cuteEditor.Text property is empty in IE9

    Hi Kenneth

     

    Unfortunatelly that page is not online. I just created it in order to provide simple example for you.

    If it is Ok I can send you entire solution.

     

    Regards,

    Dekos

View as RSS news feed in XML