hi friends,
i using fckeditor in asp.net 2.0
the control is display at design time
but at run time i editor is not display instead it display
[color=#FF0000]Server Error in '/2.0' Application.
--------------------------------------------------------------------------------
HTTP Error 404 - Not Found.
--------------------------------------------------------------------------------
Version Information: ASP.NET Development Server 9.0.0.0 [/color]
what's wrong ?
Tue, 01/08/2008 - 10:07
#1
Re: Error with Asp.Net 2.0
i also facing same error. Can anybody help me im newbie here.
best regards
Re: Error with Asp.Net 2.0
Anybody can help??
Cheers,
SHLOk
Re: Error with Asp.Net 2.0
"fckeditor" into root of web site.
dll into bin directory
reference to dll
control on tooltab from dll
no compile time errors.
Re: Error with Asp.Net 2.0
Hi,
I hope you already solved the issue. In any case, I got mine working by performing these steps:
1. copy the fckeditor to the root of the website (not virtual folder)
2. reference the FredCK.FCKeditorV2.dll found in the .net 2.0 folder (.net source codes)
hth,
Ernie
Re: Error with Asp.Net 2.0
I had an older version of fckeditor and had no problem... suddenly with the new version I have the same problem as all of you are having.
It is probably as simple as missing a file reference, somehow, but I have tried the various suggestions here, none of which have helped.
Any more suggestions anywhere out there??
Chris
Re: Error with Asp.Net 2.0
I found a simple solution in this thread...
viewtopic.php?f=6&t=8312
Just add the following to your web.config...
<appSettings>
<add key="FCKeditor:BasePath" value="~/fckeditor/" />
</appSettings>
-Aaron