How to do HTMLEditorExtender in a Web Form
Refer
Rich textbox in ASP.net
thanks...but how to get the path (html text) like this
<span style="font-weight: bold; font-style: italic; color: #993333;">Some text Some text Some text Some text</span><br />
to save in database.
Already given in the article if you read carefully
lblDisplay.Text = RichTextBox.Text;
Same can be used to save to database
string html = RichTextBox.Text; //Save to database code here
thanks, i got it. Using this how to insert images by upload control
The initial link I gave have that too anyways here you go
http://www.aspsnippets.com/Articles/Adding-Images-to-TinyMCE-Rich-Text-Editor-using-ASP.Net-FileUpload-Control.aspx
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.