1 | <%@ Page Language="C#" AutoEventWireup="true" CodeFile="testFCK.aspx.cs" Inherits="testFCK" EnableEventValidation="false" %> |
---|
2 | |
---|
3 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
4 | <%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> |
---|
5 | <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %> |
---|
6 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
7 | <head runat="server"> |
---|
8 | <title></title> |
---|
9 | </head> |
---|
10 | <body> |
---|
11 | <form id="form1" runat="server"> |
---|
12 | <ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"> |
---|
13 | </ajaxToolkit:ToolkitScriptManager> |
---|
14 | <div> |
---|
15 | <asp:UpdatePanel runat="server" UpdateMode="Conditional" ID="up"> |
---|
16 | <Triggers> |
---|
17 | <asp:PostBackTrigger ControlID="btnFull" /> |
---|
18 | </Triggers> |
---|
19 | <ContentTemplate> |
---|
20 | <FCKeditorV2:FCKeditor runat="server" ID="Body" BasePath="fckeditor/" ToolbarSet="Default" |
---|
21 | Height="400px" HtmlEncodeOutput="true" EnableViewState='false'> |
---|
22 | </FCKeditorV2:FCKeditor> |
---|
23 | <asp:Button runat="server" OnClick="posted" Text="Partial" /> |
---|
24 | <asp:Button ID="btnFull" runat="server" OnClick="posted" Text="Full" /> |
---|
25 | <asp:Label runat="server" ID="lblTest"></asp:Label> |
---|
26 | </ContentTemplate> |
---|
27 | </asp:UpdatePanel> |
---|
28 | </div> |
---|
29 | </form> |
---|
30 | </body> |
---|
31 | </html> |
---|