http://www.opensource.org/licenses/lgpl-license.php
http://www.fredck.com/FCKeditor/
fckeditor@fredck.com
fckeditor@fredck.com
<HTML>
<HEAD>
<TITLE>FCKeditor - Posted Data</TITLE>
<STYLE TYPE="text/css">
body, td
{
FONT-SIZE: 12px;
FONT-FAMILY: Arial, Verdana, Sans-Serif;
}
</STYLE>
</HEAD>
<BODY>
<table width="100%" border="1" cellspacing="0" bordercolor="#999999">
<tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999">
<td>Field</td>
<td>Value</td>
</tr>
<%
For Each sForm in Request.Form
field1 = sForm
content = Server.HTMLEncode( Request.Form(sForm) )
'pagename = replace(Request.Form("pagename"), "'", "''")
%>
<tr>
<td valign="top" nowrap><b><%=field1%></b></td>
<td width="100%"><%=content%></td>
</tr>
<%
id = Request.querystring("id")
dim query
if id then 'UPDATE a page
query = "UPDATE tblpages SET content = '" & content & "' WHERE ID = " & id
else
query = "INSERT INTO tblpages (content) VALUES ('" & content & "')"
end if
dim conn
set conn = getConn()
conn.execute(query)
conn.close()
set conn = nothing
response.redirect("../../master.asp")
Next
%>
</table>
</BODY>
</HTML>

RE: how to save to a access database.
RE: how to save to a access database.
Set your permissions, and it should work just fine.
RE: how to save to a access database.