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?
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?
In web.config section you can write
<add tagPrefix="FredCK" namespace="FredCK.CKEditor" assembly="FredCK.CKEditor, Culture=neutral, PublicKeyToken=9ef91de3e191403a" />
Best Regards
Myra
There is a nice asp.net wrapper control for the ckeditor: http://cksource.com/forums/viewtopic.php?f=11&t=15882
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,