Hi
I am trying to use a custom control (FCKEditor) on my webpage but the problem is that when i run the page without placing the control onit, the page appear normlly but when i place the control(FCKEditor) on it it give the error message
SERVER ERROR IN '/XYZ' APPLICATION
HTTP ERROR 404-NOT FOUND.
every thing is on my local system (Using SQL 2005)
Code is given bellow:
The aspx code is given bellow:
<%@ Page Language="
VB" AutoEventWireup="false" CodeFile="newcategory.aspx.
vb" Inherits="newcategory" %>
<%@ 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>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"></asp:SqlDataSource>
</div>
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server">
</FCKeditorV2:FCKeditor>
</form>
</body>
</html>
Cheers
Sheraz