Moving from IIS6 to IIS7

Last post 01-18-2012, 6:27 AM by Kenneth. 2 replies.
Sort Posts: Previous Next
  •  01-17-2012, 5:25 PM 72724

    Moving from IIS6 to IIS7

    Hello,
     
    I have a website that uses CuteEditor 5.2 on II6 on W2003, .NET2.0
    I edit the text, read CuteEditorText.Text to store in a DB, everything works on this machine.
     
    Moved everything  on a new W2008 with II7, application pool .NET 2.0 and Classic pipeline.
    Everything seems to work, but when I edit the text and press my save button, postback, and the text in the cuteeditor is the same.
     
    In the same page there's a basic input ASP.NET box, that is loaded from db, and saved along with the cuteeditor text, and that one works, it gets saved.
     
    Any suggestion? It's an old project and I really would like it to work out of the box in the new system... 
     
    Thanks!
    Mattia
  •  01-17-2012, 6:20 PM 72727 in reply to 72724

    Re: Moving from IIS6 to IIS7

    UPDATE:
    using IE9 works, with Firefox9 doesn't (CuteEditor save)
     
    on the old machine works with both
     
     
  •  01-18-2012, 6:27 AM 72731 in reply to 72727

    Re: Moving from IIS6 to IIS7

    Hi mdurli74,
     
    Please try the example page below, does it get the same problem on your site?
     
    <%@ Page Language="C#" %>

    <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <script runat="server">

        protected void btn_Save_Click(object sender, EventArgs e)
        {
            lb_Content.Text = Editor1.Text;
        }
    </script>

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
    </head>
    <body>
        <form id="form1" runat="server">
            <CE:Editor ID="Editor1" runat="server">
            </CE:Editor>
            <asp:Button ID="btn_Save" runat="server" Text="Get editor content" OnClick="btn_Save_Click" /><br />
            <asp:Label ID="lb_Content" runat="server"></asp:Label>
        </form>
    </body>
    </html>
     
    Can you reproduce this issue on demo http://www.cutesoft.net/example/general.aspx with your firefox 9?
     
    Regards,
     
    Ken
View as RSS news feed in XML