asp如何读取access数据库中的记录,怎样在access中插入文章,请高手详细说一下
2个回答
展开全部
<%
if request("action")="add" then
title=request.form("title")
body=request.form("body")
img=request.form("img")
if title="" then
response.Write("<script language=javascript>alert('新闻标题不能为空!');history.go(-1)</script>")
response.end
end if
if body="" then
response.Write("<script language=javascript>alert('新闻内容不能为空!');history.go(-1)</script>")
response.end
end if
set rs=server.createobject("adodb.recordset")
sql="select * from news"
rs.open sql,conn,1,3
rs.addnew
rs("title")=title
rs("body")=body
rs("img")=img
rs.update
rs.close
set rs=nothing
conn.close
set rs=nothing
Response.Write ("<script>alert('新闻增加成功,点击继续增加!');window.location.href='admin_news.asp';</script>")
response.end
end if
%>
如果还是看不懂就没办法了
if request("action")="add" then
title=request.form("title")
body=request.form("body")
img=request.form("img")
if title="" then
response.Write("<script language=javascript>alert('新闻标题不能为空!');history.go(-1)</script>")
response.end
end if
if body="" then
response.Write("<script language=javascript>alert('新闻内容不能为空!');history.go(-1)</script>")
response.end
end if
set rs=server.createobject("adodb.recordset")
sql="select * from news"
rs.open sql,conn,1,3
rs.addnew
rs("title")=title
rs("body")=body
rs("img")=img
rs.update
rs.close
set rs=nothing
conn.close
set rs=nothing
Response.Write ("<script>alert('新闻增加成功,点击继续增加!');window.location.href='admin_news.asp';</script>")
response.end
end if
%>
如果还是看不懂就没办法了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询