I'm using an older version of the Club Starter kit and want to add the Email components that I see in the latest version. I'm getting an error with the FCKeditor when I copy over the two Email pages into the admin section. What are the steps to adding
FCKeditor to an older version. I've added the dll to the bin, the FCK folder, but I can't seem to find any page declarations for it or anything else I should copy over.
I've got it working on several pages of the old version on my site. I had a few issues on the implementation, which you can see over at Mr. Lunch's Forums starter kit "Suggestions" thread:
http://wonglepong.wgg.com/clubwebsite/Forum_Thread.aspx?th=48
I can post any code you need here, just let me know. It sounds like you have everything in place so far with the dll and FCK files, you just need to call it from the page correctly like this:
I'm trying to figure out the Settings.vb file in the BLL. I really only want to add the e-mail functionality, and maybe down the road do a complete overhaul the club site. I'm also having to convert the settings.vb to c#, which wasn't really a problem(http://labs.developerfusion.co.uk/convert/vb-to-csharp.aspx)
but I'm getting hung up on anything with the Current prefix.
currentspull...
Member
168 Points
78 Posts
adding FCKeditor to an old Club version
Oct 31, 2007 01:44 AM|LINK
I'm using an older version of the Club Starter kit and want to add the Email components that I see in the latest version. I'm getting an error with the FCKeditor when I copy over the two Email pages into the admin section. What are the steps to adding FCKeditor to an older version. I've added the dll to the bin, the FCK folder, but I can't seem to find any page declarations for it or anything else I should copy over.
Any tips or help would be most appreciated.
zowens
Member
693 Points
243 Posts
Re: adding FCKeditor to an old Club version
Oct 31, 2007 10:46 AM|LINK
What error are you recieving, exactly??
Coordinator for the ClubStarterKit (Open Source)
http://codeplex.com/clubstarterkit
currentspull...
Member
168 Points
78 Posts
Re: adding FCKeditor to an old Club version
Oct 31, 2007 08:19 PM|LINK
I'm getting: Parser Error Message: Unknown server tag 'FCKeditorV2:FCKeditor'
GnrlPatton
Member
42 Points
28 Posts
Re: adding FCKeditor to an old Club version
Nov 01, 2007 05:21 PM|LINK
I've got it working on several pages of the old version on my site. I had a few issues on the implementation, which you can see over at Mr. Lunch's Forums starter kit "Suggestions" thread: http://wonglepong.wgg.com/clubwebsite/Forum_Thread.aspx?th=48
I can post any code you need here, just let me know. It sounds like you have everything in place so far with the dll and FCK files, you just need to call it from the page correctly like this:
<%@ Register TagPrefix="FCKeditorV2" Namespace="FredCK.FCKeditorV2" Assembly="FredCK.FCKeditorV2" %>
And then:
<FCKeditorV2:FCKeditor ID="FCKeditor1" Value='<%# Bind("description") %>' ToolbarSet="Default" runat="server" BasePath="~/FCKeditor/" Width="550" Height="300px"> </FCKeditorV2:FCKeditor>Let me know what errors you are getting and we'll try to get you sorted.Kevin
currentspull...
Member
168 Points
78 Posts
Re: adding FCKeditor to an old Club version
Nov 02, 2007 05:26 PM|LINK
Thanks GnrlPatton, that seemed to do the trick! I also then found the reference to it in the web.config:
<system.web>
<pages theme="ClubSite">
<controls>
<add assembly="FredCK.FCKeditorV2" tagPrefix="FCKeditorV2" namespace="FredCK.FCKeditorV2"/>
<add tagPrefix="Club" namespace= "ClubStarterKit.Web"/>
<add tagPrefix="Club" namespace="ClubStarterKit.Web.Controls" />
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</controls>
Now, I'm just getting errors with not having the correct BLL files! woohoo! [:)]
GnrlPatton
Member
42 Points
28 Posts
Re: adding FCKeditor to an old Club version
Nov 02, 2007 07:18 PM|LINK
Glad to hear it's working! What are the BLL files / errors?
Kevin
currentspull...
Member
168 Points
78 Posts
Re: adding FCKeditor to an old Club version
Nov 03, 2007 04:59 AM|LINK
I'm trying to figure out the Settings.vb file in the BLL. I really only want to add the e-mail functionality, and maybe down the road do a complete overhaul the club site. I'm also having to convert the settings.vb to c#, which wasn't really a problem(http://labs.developerfusion.co.uk/convert/vb-to-csharp.aspx) but I'm getting hung up on anything with the Current prefix.