Hello All. I am sorry. My english is very badly.
I am use vs2008 sp1, ajax extension ver 1.0.61025
I have such problem:
If editor it is inwardly update panel, then update panel does not work. A page is overloaded fully. See attacments.
Without fckeditor a update panel works normally, updating only update panel template.
I looked all messages on a theme update panel.
I rebuild dll. http://www.fckeditor.net/forums/viewtopic.php?f=5&t=11035&p=29067&hilit=update+panel#p29067
Nothing helps.
sample code :
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="Default3" %> <%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> <!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> </head> <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:Button ID="Button1" runat="server" Text="Button" /> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> <FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server" BasePath="fckeditor/"> </FCKeditorV2:FCKeditor> </ContentTemplate> </asp:UpdatePanel> </form> </body> </html>
Imports System.Data Imports System.Data.SqlClient Imports System.Drawing Imports AjaxControlToolkit Imports System.Collections Imports System.Web.UI.UserControl Imports System.Web Imports System.Web.SessionState Imports System.Collections.Generic Partial Class Default3 Inherits System.Web.UI.Page Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = "1" End Sub End Class
Please help!!!