新微赢技术网
标题:
数据库中的一项,无法更新,不知道为什么!
[打印本页]
作者:
乄獨萊◇獨徍
时间:
2010-1-14 08:43
标题:
数据库中的一项,无法更新,不知道为什么!
hw_views无法更新,定义为数字。原码如下:
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>产品介绍</title>
</head>
<body>
<% if request("hw_id")="" then
response.Redirect("index.asp")
else
sql="select * from hw where hw_id="&request("hw_id")
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,3,3
%>
<div align="center">
<img src="<%=rs("hw_pic")%>" border="0"><br>
<p align="left"> <%=rs("hw_content")%></p>
<%
counts=rs("hw_views")+1
sql1="update hw set hw_views=counts where hw_id="&request("hw_id")
set rss=conn.execute(sql)
end if%>
</div>
</body>
</html>
作者:
淺藍銫dē爱
时间:
2010-1-14 08:44
没有什么语法错误呀?感觉挺对的呀
作者:
v九天〓云龙
时间:
2010-1-14 08:44
sql1="update hw set hw_views=counts where hw_id="&request("hw_id")
set rss=conn.execute(sql)
改成
Sql = "update hw set hw_views= "& counts &" where hw_id="&request("hw_id")
conn.Execute Sql
作者:
守护天使
时间:
2010-1-14 08:44
谢谢!
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2