Hi,
I have Ajax server callback methods to load screens. In that, I am appending html code in control classes and finally returning and assigning that complete html string to div control on the aspx page. I have only div tags on the aspx page. Can I dynamically generate new editor controls using javascript? Because I cant use the rendered HTML code of editor in my control classes the way I am doing it for other controls.
Ex:
StringBuilder str = new StringBuilder()
str.Append("<table border=\"0\">")
........
str.Append("</table>")
Thanks