I have a problem which I have applied a fix to it, but it may not be the best thing to do. Basically when I do not have a sInitialValue the asp errors on the server.HTMLencode.
Im working on XP.
Here is what I have added to the CreateFCKeditor function (line 71):
Response.Write "<IFRAME src=""" & sLink & """ width=""" & width & """ height=""" & height & """ frameborder=""no"" scrolling=""no""></IFRAME>"
if sInitialValue <> "" then
sInitialValue = Server.HTMLEncode( sInitialValue )
end if
Response.Write "<INPUT type=""hidden"" name=""" & instanceName & """ value=""" & sInitialValue & """>"
Anyone have a better way? - is this a bug or isolated to me?
Im working on XP.
Here is what I have added to the CreateFCKeditor function (line 71):
Response.Write "<IFRAME src=""" & sLink & """ width=""" & width & """ height=""" & height & """ frameborder=""no"" scrolling=""no""></IFRAME>"
if sInitialValue <> "" then
sInitialValue = Server.HTMLEncode( sInitialValue )
end if
Response.Write "<INPUT type=""hidden"" name=""" & instanceName & """ value=""" & sInitialValue & """>"
Anyone have a better way? - is this a bug or isolated to me?