I am trying to build a basic website in ASP.Net 2.0 using FCKEditor.
But I get a page saying 'Page Not Found'. the website is properly configured in IIS, and ASPNEt user has full right to the website folder.
Is there some where a running ASP.NET sample website ( not some other htm sample) that I can use to debug my problem?
There is no read me file that points to where I should install other files in my ASP.Net website.
I have added a reference and dropped the FCKEditor on my web page without any problems.
Thanks
Sunil
But I get a page saying 'Page Not Found'. the website is properly configured in IIS, and ASPNEt user has full right to the website folder.
Is there some where a running ASP.NET sample website ( not some other htm sample) that I can use to debug my problem?
There is no read me file that points to where I should install other files in my ASP.Net website.
I have added a reference and dropped the FCKEditor on my web page without any problems.
Thanks
Sunil
Re: Page Not Found
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server" BasePath="/YourWebSiteRootDirectory/fckeditor/">
</FCKeditorV2:FCKeditor>
Or in code behind
protected void Page_Load(object sender, EventArgs e)
{
// Set the base path. This is the URL path for the FCKeditor installation. By default "/fckeditor/".
FCKeditor1.BasePath = "/YourWebSiteRootDirectory/fckeditor/";
}
Re: Page Not Found
I tried to fill basePath ( set to the main folder of my webSite. Right? ) but it doesn't work .
What i had to do?
Thank you
Re: Page Not Found