标题:ASP数据操作
只看楼主
asphh
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2009-7-24
结帖率:0
已结贴  问题点数:5 回复次数:2 
ASP数据操作
哪位能提供一个ACCESS数据添加的代码呀,急要。
搜索更多相关主题的帖子: ASP 数据 
2009-07-24 09:08
lhl671
Rank: 1
等 级:新手上路
帖 子:1
专家分:2
注 册:2009-7-24
得分:2 
<!--#include file="../../include/conn1.asp"-->
<%
action=request("action")
if action="add" then
       typeid=request("infotype")
    title=request("title")
    content=request("lr")
    picture=request("filename")
if picture<>"" then
    picture=c_path&""&picture
end if
 getconn
    sql="insert into product(typeid,title,content,picture,adddate) values('"&typeid&"','"&title&"','"&content&"','"&picture&"',now())"
    conn.execute(sql)
    closeconn
    response.write "<script language='javascript'>alert('增加成功');window.location='index.asp'</script>"
elseif action="edit" then
    cpid=request("cpid")
    typeid=request("infotype")
    title=request("title")
    content=request("lr")
    picture=request("filename")
    adddate=request("adddate")
    if picture<>"" then
        sql="picture='"&c_path&""&picture&"',"
    end if
        sql=sql&"typeid='"&typeid&"',title='"&title&"',content='"&content&"',adddate=now()"
    getconn
      sql="update product set "&sql&" where cpid="&cpid

    conn.execute(sql)
    closeconn
    response.write "<script language='javascript'>alert('编辑成功');window.location='index.asp'</script>"
elseif action="del" then
    cpid=request("cpid")
        getconn
    sql="delete from product where cpid="&cpid
    conn.execute(sql)
    closeconn
    response.write "<script language='javascript'>alert('删除成功');window.location='index.asp'</script>"
end if
%>
2009-07-24 14:40
yms123
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:209
帖 子:12488
专家分:19042
注 册:2004-7-17
得分:2 
这个是最基础的操作了。
2009-07-24 15:05



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-280361-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.104549 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved