here is what im trying to do on the testsubmit.asp example.
<!--#INCLUDE FILE="../../config.asp"-->
<!--
* FCKeditor - The text editor for internet
* Copyright (C) 2003 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License
* (http://www.opensource.org/licenses/lgpl-license.php)
*
* For further information go to http://www.fredck.com/FCKeditor/
* or contact fckeditor@fredck.com.
*
* testsubmit.asp: Lists the submited dato from a form POST.
*
* Authors:
* Frederico Caldeira Knabben (fckeditor@fredck.com)
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<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.