FCKeditor

This is a discussion on "FCKeditor" within the ASP.NET Forum section. This forum, and the thread "FCKeditor are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > ASP.NET Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Aug 14th, 2007, 14:06
New Member
Join Date: Aug 2007
Location: Trondheim
Age: 30
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
FCKeditor

Hi!

I am trying to set up FCKeditor to edit some content stored in an Access-database. I have set up the editor and it works, but how can I get the content from the database into the editable area?

I have an formview and an AccessDataSource in the same page that works(just for the example, to se that the connection works).

The code is:

<%document.write('@'); @ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>

<%document.write('@'); @ 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:AccessDataSource ID="AccessDataSource_test" runat="server" DataFile="~/App_Data/bc.mdb"
SelectCommand="SELECT [Artikkel] FROM [provekjoring]"></asp:AccessDataSource>
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server" BasePath="FCKeditor/">
</FCKeditorV2:FCKeditor>

<asp:FormView ID="FormView1" runat="server" DataSourceID="AccessDataSource_test">
<ItemTemplate>
Artikkel:
<asp:Label ID="ArtikkelLabel" runat="server" Text='<%# Bind("Artikkel") %>'></asp:Label><br />
</ItemTemplate>
</asp:FormView>


</div>
</form>
</body>
</html>



Anyone who has a tip to point me into the solution?

I have searched www.fckeditor.net and a lot of other forums, but I still don't get it up and running...

Reply With Quote

Reply

Tags
fck, fckeditor

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
FCKEditor nashultz07 Scripts and Online Services 8 Aug 28th, 2007 23:08


All times are GMT. The time now is 22:43.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43