Add Text editor to my web application
I need a text editor that I can add as a component to my开发者_StackOverflow社区 ASP.net web application, but I need an extra feature in it, it's watermarking. Can you help me?
Recommend components names
Well you need to render HTML in this fashion
<textarea rows="10" cols="20" style="background-image:url('yourimage.jpg')"></textarea>
You could set the background-image style property on whatever control you use. I recommend the image should use a color scheme that will be easy to type over.
A bit like @Shoban I'm sceptical about a watermark on a text editor, watermarks are usually added to images.
But you could use the url attribute of the background-image css style to the control containing the texteditor, for example:
.texteditor {
background-image:url('watermark.gif');
}
精彩评论