hi,
am wanted fck editor to be included in my project(C# .NET). i had included dll(FredCK.FCKeditorV2.dll) from release in my bin folder. and in toolbox i have added fck toolbar with choose items fckeditor, then my aspx is as below
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="fck.aspx.cs" Inherits="fck" %>
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<script language ="javascript" src ="fckconfig.js ">
</script>
</head>
<body>
<form id="form1" runat="server">
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server">
</FCKeditorV2:FCKeditor>
<div>
<input id="Submit1" type="submit" value="Submit" runat="server" />
</div>
</form>
</body>
</html>
when i run this page : i get the foolowing error
The page cannot be found
Wed, 04/02/2008 - 10:39
#1

Re: fck editor toolbar(ASP.NET)
Re: fck editor toolbar(ASP.NET)
FCKeditor1.BasePath = Request.ApplicationPath & "/fckeditor/"
Note: Make sure the FCKeditor is installed and placed in the website root directory. If you don't want to install in the root directory, you'll have to change the path to suit your needs.