1 Set Conn=Server.CreateObject("ADODB.Connection")
Conn.OPen "Provider=Microsoft.Jet.Oledb.4.0;Data Source="&Server.Mappath("数据库名称")
2 Set Conn=Server.CreateObject("ADODB.Connection")
Conn.OPen "driver={microsoft access driver (*.mdb)};dbq="&Server.Mappath("数据库名称")
一般用前者的比较多!以上两种连接方式都可以用(下面代码)来添加和更新数据
<%
rs.addnew
rs("cn_title")=whattitle
rs("cn_author")=whoauthor
rs("cn_content")=whatcontent
rs.update
%>
假如要执行Sql语句的话
Sql="Insert INto 表名 (cn_title,cn_author,cn_content)VALUES('whattitle','whoauthor','whatcontent') 只有前者可以,后者好像不可以!!!
[此贴子已经被作者于2007-10-18 12:34:27编辑过]