I mangage to install FCK (and it is working fine)! Here the page I call "admin":
<!--#include file="template2.asp"-->
<!-- #INCLUDE file="FCKeditor/fckeditor.asp" -->
<%function title()%>
Admin
<%end function%>
<%function content()%>
<div class="title" style="font-size:18">Admin area & Editor
<body>
<form name='webdesign' method='post' Form action='webdesign.asp'>
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.Create "FCKeditor1"
%>
<br>
<input type="submit" value="Submit">
</form>
</body>
<%end function%>
When I click on the submitbottom I want it to show up on this page called "webdesign":
<!--#include file="template2.asp"-->
<!-- #INCLUDE file="FCKeditor/fckeditor.asp" -->
<%function title()%>
Product 2
<%end function%>
<%function content()%>
<div class="title" style="font-size:18">Web Design</div>
<%end function%>
BUT I DON'T KNOW WHICH CODE I SHALL PUT IN IN ORDER TO SEE IT ON THIS PAGE?
Probably a simple quistion for the most of you that know about ASP - for me it is difficult!
Please help me with the code!
Thanks
<!--#include file="template2.asp"-->
<!-- #INCLUDE file="FCKeditor/fckeditor.asp" -->
<%function title()%>
Admin
<%end function%>
<%function content()%>
<div class="title" style="font-size:18">Admin area & Editor
<body>
<form name='webdesign' method='post' Form action='webdesign.asp'>
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.Create "FCKeditor1"
%>
<br>
<input type="submit" value="Submit">
</form>
</body>
<%end function%>
When I click on the submitbottom I want it to show up on this page called "webdesign":
<!--#include file="template2.asp"-->
<!-- #INCLUDE file="FCKeditor/fckeditor.asp" -->
<%function title()%>
Product 2
<%end function%>
<%function content()%>
<div class="title" style="font-size:18">Web Design</div>
<%end function%>
BUT I DON'T KNOW WHICH CODE I SHALL PUT IN IN ORDER TO SEE IT ON THIS PAGE?
Probably a simple quistion for the most of you that know about ASP - for me it is difficult!
Please help me with the code!
Thanks

RE: Nobody knows about ASP? Not ONE can help
From what you describe, it sounds like the first page contains the editor. When you submit, the second page displays the content. But the content is not saved anywhere and the only way the second page is ever displayed is when the first page us submitted. Is that right?
If so, you only want to display the content, you can use:
response.write request("FCKeditor1")
RE: Nobody knows about ASP? Not ONE can help me?
Jaime
RE: Nobody knows about ASP? Not ONE can help me?
How do I save the content on the receiving page?
When I go back to the editor and write something again (to add up) - it overwrite the first text I have put in...
(It should probably go to a database, but this I don't know how to do)
You are probably laughing :O)
RE: Nobody knows about ASP? Not ONE can help me?
Just I go from my testpage (with the content) to another page and back - it's empty.
How can I save it. Only with a database?
Can you 2 guy's help me again?
RE: Nobody knows about ASP? Not ONE can help me?
If you go back using other method, you can either save the content in a database and then pass the content ID to the other page or create a hidden form and post it to the other page.
Jaime
RE: Nobody knows about ASP? Not ONE can help me?
I try with the history back, but when I go to another page and then come back again, the content is gone. What I want is that it will be saved on this page. Probably it can only be done with a database? ...and I don't know how do do.
Probably I have to give up...
Thanks anyway for trying helping me!
By the way - my name is Per, and I am Danish, but living in Spain. It looks like (on your name) that you are Spanish?
RE: Nobody knows about ASP? Not ONE can help me?
Let me know if I understood the problem.
You are in the page where the FCK editor is loaded. You enter some content. Post the form to another page. Then, from that page, you hit a back button (which issues a history.back() call) to return to the FCK editor page and the content is gone. Is that right?
In any way, I think you should post the FCK page to a ASP page that only saves the content to the database. After the content is saved, you could redirect to a results page (passing the content ID as the parameter). If from that page you have a back button, in that case it's better to use, for example, <input type="button" name="btnBack" value="Back" onClick="fck_page.asp?contentid=<%=newID%>">. You could post here the whole page where fck editor resides in order to guide you better to solve the problem.
By teh way, which database engine are you using?
Well... in fact my name is Spanish, but I am Chilean, living in Santiago.
Cheers
Jaime