1 | <%@ Page Language="C#" AutoEventWireup="true"%> |
---|
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="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %> |
---|
5 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
6 | <head runat="server"> |
---|
7 | <title></title> |
---|
8 | </head> |
---|
9 | <body> |
---|
10 | <form id="form1" runat="server"> |
---|
11 | <asp:ScriptManager ID="ScriptManager1" runat="server"> |
---|
12 | </asp:ScriptManager> |
---|
13 | <div> |
---|
14 | <asp:UpdatePanel ID="UpdatePanel1" runat="server"> |
---|
15 | <ContentTemplate> |
---|
16 | <CKEditor:CKEditorControl ID="CKEditor1" runat="server" Height="200"> |
---|
17 | <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p> |
---|
18 | </CKEditor:CKEditorControl> |
---|
19 | <asp:Button ID="Button2" runat="server" Text="Inside UP" /> |
---|
20 | </ContentTemplate> |
---|
21 | </asp:UpdatePanel> |
---|
22 | <hr /> |
---|
23 | <CKEditor:CKEditorControl ID="CKEditor2" runat="server" Height="200"> |
---|
24 | <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p> |
---|
25 | </CKEditor:CKEditorControl> |
---|
26 | <asp:Button ID="Button1" runat="server" Text="Outside UP" /> |
---|
27 | </div> |
---|
28 | </form> |
---|
29 | </body> |
---|
30 | </html> |
---|