Hi There!
I'm having a problem with FCKeditor 2.6.3 .Net 2 version, I have put 3 editors in one page and the problem is I can just get the value for the first editor but not for the others.
I Also try to put
Or
Or
But without luck.... any idea why am I losing the values for the second and the third editor?
Thanks a lot!
I'm having a problem with FCKeditor 2.6.3 .Net 2 version, I have put 3 editors in one page and the problem is I can just get the value for the first editor but not for the others.
I Also try to put
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
fckPrimaria = new FCKeditor();
fckSecundaria = new FCKeditor();
fckTerciaria = new FCKeditor();
}
}
Or
protected void Page_Load(object sender, EventArgs e)
{
fckPrimaria = new FCKeditor();
fckSecundaria = new FCKeditor();
fckTerciaria = new FCKeditor();
}
Or
protected void Page_Load(object sender, EventArgs e)
{
FCKeditor fckPrimaria = new FCKeditor();
FCKeditor fckSecundaria = new FCKeditor();
FCKeditor fckTerciaria = new FCKeditor();
}
But without luck.... any idea why am I losing the values for the second and the third editor?
Thanks a lot!

Re: Losing Value