Thanks for that reply. I do not have IIS installed on my development computer. Where would I have to copy that folder to if I run my application using Visual Studio 2008? or will I have to install IIS to get it running?
Server Error in '/_site' Application.
--------------------------------------------------------------------------------
HTTP Error 404 - Not Found.
--------------------------------------------------------------------------------
Version Information: ASP.NET Development Server 9.0.0.0
Okay, I solved my problem. I had to set "BasePath" to "~/fckeditor/". By default, the path is "/fckeditor/". VS / ASP.NET was seeming to have a problem with that.
ekazda wrote:Okay, I solved my problem. I had to set "BasePath" to "~/fckeditor/". By default, the path is "/fckeditor/". VS / ASP.NET was seeming to have a problem with that.
Hi there
I am running into the same problem. I did not quite understand how you solved it, may you please explain the above. I mean where is the BasePath, /fckeditor directories etc? Please assist.
Changing the BasePath like that seemed to solve the problem for me in Visual Studio. In reality, it might have been a local only problem, and not even been necessary once uploaded to a server.
Hi, I have added the FCKeditor on the aspx page and give the following text to display as formatted text in the editor but editor is not displaying anything runtime. The code:= FCKeditor1.Value = "<html><b>hi FCKeditor</b></html>";
1. Editor is not displayed. 2. I have the content of the word document, how to display it in editor without losing its formatting.
Friends, I am new to this, please help me out. Thanks, Munish
Server Error in '/TestEditor' Application.
--------------------------------------------------------------------------------
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /TestEditor/FCKEditor/editor/fckeditor.html
I had this same problem when I started to use FCKEditor for asp.net 2.0 on VS 9.0. This thread helped me to solve this problem so it is appropriate for me to share what the solution I did.
1. I encountered "404 Error..." too on my aspx page after I referenced and registered the assembly. 2. I tried to follow the instructions given on the FCKEditor asp.net 2.0 documentation on my asp.net 2.0 C# project on VS 8.0 but the same error I got. 3. I viewed the page source and found out that there are files that needed to be on my root directory (same directory where my aspx pages at). So I copy the fckeditor folder and all of its content on my root directory. After doing that, It all went well. 4. So, before using the FCKEditor on my asp.net 2.0 on VS 9.0 project, I copied first the same fckeditor to my current project directory. 5. I opened the fckconfig.js inside the fckeditor folder and look for this two variables 1. _FileBrowserLanguage 2. _QuickUploadLanguage then changed its value to 'aspx'. 6. After that I put the registration assembly "<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>" on the top of my aspx page then change the fckeditor control "<FCKeditorV2:FCKeditor ID="FCKEditor1" runat="server" BasePath="~/jsec/fckeditor/" />". 7. See the BasePath="~/jsec/fckeditor/". I have to make it this way because i put the fckeditor folder inside "jsec" folder which is inside my root diretory. 8. Then wallah, FCKEditor is now working well on my asp.net 2.0 VS 9.0 projects.
Re: 404 Error on ASP.Net page
Re: 404 Error on ASP.Net page
Thanks for that reply. I do not have IIS installed on my development computer. Where would I have to copy that folder to if I run my application using Visual Studio 2008? or will I have to install IIS to get it running?
Thanks
Re: 404 Error on ASP.Net page
Re: 404 Error on ASP.Net page
Re: 404 Error on ASP.Net page
Hi there
I am running into the same problem. I did not quite understand how you solved it, may you please explain the above. I mean where is the BasePath, /fckeditor directories etc? Please assist.
Re: 404 Error on ASP.Net page
Changing the BasePath like that seemed to solve the problem for me in Visual Studio. In reality, it might have been a local only problem, and not even been necessary once uploaded to a server.
Hopefully that helps.
Re: 404 Error on ASP.Net page
I have added the FCKeditor on the aspx page and give the following text to display as formatted text in the editor but editor is not displaying anything runtime.
The code:=
FCKeditor1.Value = "<html><b>hi FCKeditor</b></html>";
1. Editor is not displayed.
2. I have the content of the word document, how to display it in editor without losing its formatting.
Friends, I am new to this, please help me out.
Thanks,
Munish
Re: 404 Error on ASP.Net page
Re: 404 Error on ASP.Net page
Re: 404 Error on ASP.Net page
Re: 404 Error on ASP.Net page
Re: 404 Error on ASP.Net page
Re: 404 Error on ASP.Net page
Change your code to:
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server" BasePath="~/fckeditor/">
</FCKeditorV2:FCKeditor>
Now it will work.
Espen