| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 440 人关注过本帖
标题:数据库中的一项,无法更新,不知道为什么!
只看楼主 加入收藏
dangdang_198
Rank: 1
等 级:新手上路
帖 子:85
专家分:0
注 册:2006-4-17
收藏
 问题点数:0 回复次数:3 
数据库中的一项,无法更新,不知道为什么!

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>

搜索更多相关主题的帖子: 数据库 
2006-04-30 00:16
water123456
Rank: 5Rank: 5
等 级:贵宾
威 望:15
帖 子:3208
专家分:5
注 册:2006-2-21
收藏
得分:0 
没有什么语法错误呀?感觉挺对的呀

让我们风风火火的过一生,别平平淡淡过一年。
2006-04-30 07:25
阳光白雪
Rank: 7Rank: 7Rank: 7
等 级:贵宾
威 望:39
帖 子:2220
专家分:0
注 册:2005-11-18
收藏
得分:0 
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

专注于WEB前端交互平台开发:[url=http://blog./]blog.[/url](富客户端技术(RIA)交流平台)
2006-04-30 08:43
dangdang_198
Rank: 1
等 级:新手上路
帖 子:85
专家分:0
注 册:2006-4-17
收藏
得分:0 
谢谢!

欢迎加入技术群5725994
2006-04-30 11:45
快速回复:数据库中的一项,无法更新,不知道为什么!
数据加载中...
 
   



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

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