Hi,
In the right bottom corner of Editor there are 2 buttons - "+" and "-". Using these button, I can change the size od Editor. I would like to have the same size of my page all time after submitting the form. It must be size which user set before submitting the form. So I can't fixed it like Height="500".
I tried to change Height of Editor int his way:
On Submit event:
I put the current Height into Session variable
Session["CuteEditor.Height"] = Editor1.Height.ToString().Replace("px","");
and
On Page_Load event
I tried to set this Height
Editor1.Height = Unit.Parse(Session["CuteEditor.Height"].ToString());
But every time I got default settings. The Height of Editors is not changed.
Thanks,
Igor