只有一个页面的话,
表单需指定动作,等待页面提交才做出修改
数据库等
*** 作。<br>而且修改是使用update命令<br>大致如下步骤<br><br>xxx.asp<br><br><%<br>ac = request("ac")'获取表单提交动作<br><br>if ac = "upd" then '是提交表单命令,进行修改数据库 *** 作<br>a=request("a")<br>exec = "update [tb1] set a=" &a<br>conn.execute(exec)'修改<br>response.write("<script>alert('修改成功!')location.href='xxx.asp'</script>")'修改成功d窗,跳回原界面<br><br>end if<br><br>%><br><br><form action="?ac=upd" method="post"><br><input type="text" name="a" /><br><input type="submit" name="sub" value="submit" /><br><br></form>用update更新数据。
update [表名] set [列名]=值 where [id]=编号
查询、更新、删除这是基本的数据库 *** 作语法,必须加强学习并掌握,否则写不了根数据库 *** 作方面的代码。
评论列表(0条)