标题:提交后怎样提取ID
取消只看楼主
hwqde
Rank: 1
等 级:新手上路
帖 子:33
专家分:0
注 册:2007-10-7
 问题点数:0 回复次数:4 
提交后怎样提取ID
<%
    title=request.form("title")
    content=request.form("content")
    dateandtime=date()

if title="" then
    FoundErr=True
    ErrMsg=ErrMsg & "<br><li>新闻标题不能为空!</li>"
end if

if content="" then
    FoundErr=True
    ErrMsg=ErrMsg & "<br><li>新闻内容不能为空!</li>"
end if


if FoundErr<>True then   
    set rs=server.CreateObject("ADODB.RecordSet")
    sql = "SELECT * FROM news"
    rs.Open sql,Conn,2,3
    rs.addnew
        rs("title") = title
    rs("content") = content
        rs("dateandtime")=dateandtime
    rs.update
    rs.close
    set rs = nothing
    Response.Redirect "Id是数据库自动编号的,怎样才能在提交后就知道此段数据的ID号呢?望高手赐教"
else
    call WriteErrMsg()
end if   
搜索更多相关主题的帖子: 新闻 sql content title 
2009-09-12 22:52
hwqde
Rank: 1
等 级:新手上路
帖 子:33
专家分:0
注 册:2007-10-7
得分:0 
回复 2楼 无诲今生
这个想法我也想过,但如果是多人同时操作,这个ID可能就是别人的ID了

2009-09-13 09:31
hwqde
Rank: 1
等 级:新手上路
帖 子:33
专家分:0
注 册:2007-10-7
得分:0 
回复 3楼 aspic
怎样能将这个ID反馈出来呢,就是提交后用一个页面把ID号输出来?

2009-09-13 09:32
hwqde
Rank: 1
等 级:新手上路
帖 子:33
专家分:0
注 册:2007-10-7
得分:0 
怎样能将这个ID反馈出来呢,就是提交后用一个页面把ID号输出来?

2009-09-13 09:39
hwqde
Rank: 1
等 级:新手上路
帖 子:33
专家分:0
注 册:2007-10-7
得分:0 
可以了,非常谢谢aspic和无诲今生的帮助.

2009-09-13 10:17



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




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

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