hello,
how do i extract plain html from the editor in c#.
When i use editor1.text it gives me the html in the format :
sample 1:
<table>
<tr>
</tr>
<tr>
</tr>
</table>
but i whant to extract the html not formated:
sample 2:
<table><tr></tr><tr></tr></table>
My objective is to insert this html in the database so i need the html like the sample 2, how do i do that?
thanks