How Do I Add HTML To A ckEditor?

dragonrage01

Power Member
Joined
May 19, 2011
Messages
674
Reaction score
159
How Do I Add HTML To A ckEditor?
Anyone know the code?


Thank you in advance.
 
Hmm if you mean what I think you mean, at the top left you click a button, and it views the source code. Paste your code there, and click that button again to view the result on the WYSIWYG editor.
 
hi

if u r looking for winform base or wpf html editor there are lots of options,personally I never used CKEditor,
Recently I developed a WYSWYUG editor using Boo HTML editor
 
hi

if u r looking for winform base or wpf html editor there are lots of options,personally I never used CKEditor,
Recently I developed a WYSWYUG editor using Boo HTML editor

Thanks for the suggestion but I'm not making a website.

I'm basically going to a website, going to the place where they have a CKEditor, my webbrowser control is going to place a link there pointing to my website.
I am just looking for a line of code that will basically input my html code to the CKEditor.

Thanks anyway.
 
ok u mean u r trying to automate any website which having CKEditor ?
if so then can u share webpage u r trying to automate I will try same
 
try to evaluate some javascript like this:
Code:
for(var key in CKEDITOR.instances ) CKEDITOR.instances[ key ].setData('<a href="http://www.blackhatworld.com">bhw</a>')
 
try to evaluate some javascript like this:
Code:
for(var key in CKEDITOR.instances ) CKEDITOR.instances[ key ].setData('<a href="http://www.blackhatworld.com">bhw</a>')

I tried doing this but I couldn't make it to work.
 
Back
Top