Intoduction :-
Hii Friends...
Today I explain how to make Ck editor in asp.net. I think this will be interesting and time consuming for CMS type data entry where CKEditor is quite often used. As this process can be used easily and it supports easy integration between different projects, programmers will be helped a lot.
Step : 1 The Code goes here :->
Firstly add this script on designing page as below given.
Hii Friends...
Today I explain how to make Ck editor in asp.net. I think this will be interesting and time consuming for CMS type data entry where CKEditor is quite often used. As this process can be used easily and it supports easy integration between different projects, programmers will be helped a lot.
Step : 1 The Code goes here :->
Firstly add this script on designing page as below given.
<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>
Step : 2 Design Code here :-><div>
<CKEditor:CKEditorControl ID="CKEditor1" BasePath="/ckeditor/" runat="server">
</CKEditor:CKEditorControl>
</div>
Step : 3 CS Code here :->protected void Button1_Click(object sender, EventArgs e) { string str = CKEditor1.Text; string str1 = Server.HtmlEncode(str); string str2 = Server.HtmlDecode(str); lblText.Text = str2; }
DEMO:-
0 comments:
Post a Comment