| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 421 人关注过本帖
标题: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
快速回复:ASP数据操作
数据加载中...
 
   



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

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