Re: Moving from IIS6 to IIS7

  •  01-18-2012, 6:27 AM

    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 Complete Thread