Is it possible to use Basic HTML TextArea for RichText Editing?
If not, what benefit we have out of using TextArea instead of TextBox?
I DO NOT want any third party editors. Looking for some option available by default in ASP.NET or HTML.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
TextBox is single line editor and TextArea is multi line editor, there is no default implementation of rich text editing in HTML so far. All third party libraries use some sort of DIV or IFRAME and enable “editing” feature and they wrap javascript code with buttons to make a good rich text editor. ASP.NET doesnt have any inbuilt rich text editor either.