0

I'm using TextAreaFor Html helper for editing content. Now I insert an image into the box and want to modify it's properties such as width, height.. but I dont see any buttons or context menu help me manage this. How can I figure out to enable this feature?

I know some other tools implementing this feature like RadEditor of Telerik. But I just want to use Html helper here.

Really appriciate for any suggestion.

Khanh Vu
  • 53
  • 7
  • possible duplicate of [HTML : Is there any way to show images in a textarea?](http://stackoverflow.com/questions/3793090/html-is-there-any-way-to-show-images-in-a-textarea) – tvanfosson Feb 07 '13 at 02:51
  • I dont think they are similar because I am working on Html helper of ASP.NET MVC 3, and I do not really understand what that question wants. – Khanh Vu Feb 07 '13 at 03:20
  • 1
    Of course, they are similar. The helper produces a textarea and you can't put images in a textarea. You need to find a different solution. – tvanfosson Feb 07 '13 at 05:29
  • OK. I found the solution. Thanks – Khanh Vu Feb 07 '13 at 06:17
  • Could you post here what solution did you found so that it will also be helpful to other people who will encounter the same problem.. :) – bot Feb 07 '13 at 09:30

1 Answers1

1

If you are trying to implement a WYSIWYG editor then you should try something like:

KendoUI: http://demos.kendoui.com/web/editor/index.html

or

TinyMCE: http://www.tinymce.com/

Ed Charbeneau
  • 4,501
  • 23
  • 23