ASP.Net HTML Editor at Runtime?
-
Hi Guys, I am asp.net 3.5 and just downloaded the free HTML editor which I downloaded from this link - http://www.codeproject.com/KB/ajax/HTMLEditor.aspx My questions are: 1. I actually placed the Winthusiasm.HtmlEditor control in one of my asp.net pages inside the ContentPlaceHolder1. And since I am using CSS, the problem is that, the HTML codes which I pasted in this control does not link to my CSS, so when I clicked on "Design" tab, the result is not good. Do you think this HTML Editor is not capable of reading CSS file? 2. In "HTML" tab, if I change something in the text, how am I going to pass the value from Editor.text to Textbox1.text? Because, I will just simply code it like this (below), it doesn't work. Textbox1.Text = Editor.Text; // this code does not work; It doesn't show the latest changes. That's all I wanted to know guys. Please help. If you know other Free html control for asp.net 3.5, please let me know. Thank you.
hifiger2004