vote up 0 vote down star

I want to insert images into the html editor programmatically. I have a fileupload that allows the user to select an image and I want to insert that image into the editor. I'm not very familiar in using the editor so how can i do this?

flag

62% accept rate
What HTML Editor? – Jonathan Sampson Jul 20 at 16:59
The one ajax offers in their new toolkit from May 29, 2009. codeplex.com/HtmlEditor – Eric Jul 20 at 17:01

1 Answer

vote up 0 vote down

This is what i did on the button click event

 myEditor.Content = "<img height='100px' width='100px' src=" & Chr(34) & Imgupload.PostedFile.FileName & Chr(34) & "/>"

it worked.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.