views:

32

answers:

3

I have to use a ckeditor in my application but I dont know how to write the

@ Register Assembly="" Namespace="" TagPrefix="" %>

From where I could get the assembly?

+2  A: 

In web.config section you can write

<add tagPrefix="FredCK" namespace="FredCK.CKEditor" assembly="FredCK.CKEditor, Culture=neutral, PublicKeyToken=9ef91de3e191403a" />

Best Regards
Myra

Myra
A: 

There is a nice asp.net wrapper control for the ckeditor: http://cksource.com/forums/viewtopic.php?f=11&amp;t=15882

citronas
A: 

The answer will be

scrpt type = "text/javascript" src = "ckeditor/ckeditor.js"....close script //ckeditor is the folder that you have created in your application.

script type="text/javascript" window.onload = function()

{

debugger

vartxtDemo = document.getElementByID('<%txtDemo.ClientID%');

CKEDITOR.replace(txtDemo); }...//close the script

but before that make a ckeditor folder in your application and paste the contents that you have downloaded,

Srivastava