| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 612 人关注过本帖
标题:[求助]数据库的修改问题
只看楼主 加入收藏
sun_life
Rank: 1
等 级:新手上路
帖 子:356
专家分:5
注 册:2006-5-29
结帖率:72.73%
收藏
 问题点数:0 回复次数:10 
[求助]数据库的修改问题

<!--#include file="set.asp"-->
<%
if request.Cookies("adminok")=""then
response.Redirect"error.asp"
end if
%>

<%
dim names
dim A_type
dim Money
dim High
dim Weight
dim Attestation
dim Computy
dim Features
dim Num
dim times

names=request.Form("names")
A_type=request.Form("A_type")
Money=request.Form("Money")
High=request.Form("High")
Weight=request.Form("Weight")
Attestation=request.Form("Attestation")
Computy=request.Form("Computy")
Features=request.Form("Features")
Num=request.Form("Num")
times=request.Form("times")

if names="" then
Response.Write("<script>alert('请输入产品的品牌!');history.go(-1)</script>")
Response.End
end if
if A_type="" then
Response.Write("<script>alert('请输入产品的型号!');history.go(-1)</script>")
Response.End
end if
if Money="" then
Response.Write("<script>alert('请输入产品的报价!');history.go(-1)</script>")
Response.End
end if
if Computy="" then
Response.Write("<script>alert('请输入产公司的名称!');history.go(-1)</script>")
Response.End
end if
if times="" then
Response.Write("<script>alert('请输入产品的报价时间!');history.go(-1)</script>")
Response.End
end if
%>
<%
ssql="select * from paper "
rst.open ssql,cnn,1,3
%>
<%
rst.addnew
rst("names")=names
rst("A_type")=A_type
rst("Money")=Money
rst("High")=High
rst("Weight")=Weigh
rst("Attestation")=Attestation
rst("Computy")=Computy
rst("Features")=Features
rst("Num")=Num
rst("times")=times

rst.update

rst.close

set rst=nothing

Response.Write("<script>alert('添加成功!');window.location=('admin_paper_pic.asp')</script>")

cnn.close

set cnn=nothing
%>

这段代码是数据修改的单页面上的输入框中总是不能显示数据

搜索更多相关主题的帖子: 数据库 
2006-06-01 10:56
hangxj
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:2045
专家分:0
注 册:2006-4-10
收藏
得分:0 

不太明白你要表达的意思


http://www./
2006-06-01 11:36
sun_life
Rank: 1
等 级:新手上路
帖 子:356
专家分:5
注 册:2006-5-29
收藏
得分:0 

那份问题太大我在重发份吧!
<!--#include file="set.asp"-->
<%
if request.Cookies("adminok")=""then
response.Redirect"error.asp"
end if
%>
<%
<%id=request("id")%>
<%
dim names
dim A_type
dim Money
dim High
dim Weight
dim Attestation
dim Computy
dim Features
dim Num
dim times

names=request("names")
A_type=request("A_type")
Money=request("Money")
High=request("High")
Weight=request("Weight")
Attestation=request("Attestation")
Computy=request("Computy")
Features=request("Features")
Num=request("Num")
times=request("times")

if names="" then
Response.Write("<script>alert('请输入产品的品牌!');history.go(-1)</script>")
Response.End
end if
if A_type="" then
Response.Write("<script>alert('请输入产品的型号!');history.go(-1)</script>")
Response.End
end if
if Money="" then
Response.Write("<script>alert('请输入产品的报价!');history.go(-1)</script>")
Response.End
end if
if Computy="" then
Response.Write("<script>alert('请输入产公司的名称!');history.go(-1)</script>")
Response.End
end if
if times="" then
Response.Write("<script>alert('请输入产品的报价时间!');history.go(-1)</script>")
Response.End
end if
%>
<%
ssql="select * from paper where id="&id
rst.open ssql,cnn,1,3

rst("names")=names
rst("A_type")=A_type
rst("Money")=Money
rst("High")=High
rst("Weight")=Weigh
rst("Attestation")=Attestation
rst("Computy")=Computy
rst("Features")=Features
rst("Num")=Num
rst("times")=times

rst.update

rst.close

set rst=nothing

Response.Write("<script>alert('添加成功!');window.location=('admin_paper_pic.asp')</script>")

cnn.close

set cnn=nothing
%>
现在的问题是我不能修改指定记录


当知道自己后才知道什么是可怕!
2006-06-01 12:31
hangxj
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:2045
专家分:0
注 册:2006-4-10
收藏
得分:0 

有什么提示?


http://www./
2006-06-01 12:59
sun_life
Rank: 1
等 级:新手上路
帖 子:356
专家分:5
注 册:2006-5-29
收藏
得分:0 
没有提示!问题处在当我把东西修改提交时他没有按我的id修改
而是修改的最后一条记录

当知道自己后才知道什么是可怕!
2006-06-01 13:06
llingma
Rank: 1
等 级:新手上路
帖 子:96
专家分:0
注 册:2006-5-19
收藏
得分:0 
是这样的,update只能更新1条记录

2006-06-01 13:13
sun_life
Rank: 1
等 级:新手上路
帖 子:356
专家分:5
注 册:2006-5-29
收藏
得分:0 
以下是引用llingma在2006-6-1 13:13:00的发言:
是这样的,update只能更新1条记录

那哦该怎么改!?


当知道自己后才知道什么是可怕!
2006-06-01 13:17
sun_life
Rank: 1
等 级:新手上路
帖 子:356
专家分:5
注 册:2006-5-29
收藏
得分:0 
我去了updata 也不对!

当知道自己后才知道什么是可怕!
2006-06-01 13:18
sun_life
Rank: 1
等 级:新手上路
帖 子:356
专家分:5
注 册:2006-5-29
收藏
得分:0 
我的问题是:假设我现在项修改id=3的纪录,修改后他的id还应该是3,玩我修改后id=3的纪录没改,而id=1的纪录却改了

当知道自己后才知道什么是可怕!
2006-06-01 13:21
sun_life
Rank: 1
等 级:新手上路
帖 子:356
专家分:5
注 册:2006-5-29
收藏
得分:0 
以下是引用sun_life在2006-6-1 12:31:00的发言:

那份问题太大我在重发份吧!
<!--#include file="set.asp"-->
<%
if request.Cookies("adminok")=""then
response.Redirect"error.asp"
end if
%>
<%
<%id=request("id")%>
<%
dim names
dim A_type
dim Money
dim High
dim Weight
dim Attestation
dim Computy
dim Features
dim Num
dim times

names=request("names")
A_type=request("A_type")
Money=request("Money")
High=request("High")
Weight=request("Weight")
Attestation=request("Attestation")
Computy=request("Computy")
Features=request("Features")
Num=request("Num")
times=request("times")

if names="" then
Response.Write("<script>alert('请输入产品的品牌!');history.go(-1)</script>")
Response.End
end if
if A_type="" then
Response.Write("<script>alert('请输入产品的型号!');history.go(-1)</script>")
Response.End
end if
if Money="" then
Response.Write("<script>alert('请输入产品的报价!');history.go(-1)</script>")
Response.End
end if
if Computy="" then
Response.Write("<script>alert('请输入产公司的名称!');history.go(-1)</script>")
Response.End
end if
if times="" then
Response.Write("<script>alert('请输入产品的报价时间!');history.go(-1)</script>")
Response.End
end if
%>
<%
ssql="select * from paper where id="&id
rst.open ssql,cnn,1,3

rst("names")=names
rst("A_type")=A_type
rst("Money")=Money
rst("High")=High
rst("Weight")=Weigh
rst("Attestation")=Attestation
rst("Computy")=Computy
rst("Features")=Features
rst("Num")=Num
rst("times")=times

rst.update

rst.close

set rst=nothing

Response.Write("<script>alert('添加成功!');window.location=('admin_paper_pic.asp')</script>")

cnn.close

set cnn=nothing
%>
现在的问题是我不能修改指定记录

对不起!这段代码没问题!
是我把页面搞错了!
谢谢大家帮忙!


当知道自己后才知道什么是可怕!
2006-06-01 13:51
快速回复:[求助]数据库的修改问题
数据加载中...
 
   



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

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