asp 如何批量修改数据?
test.asp<formaction=test2.aspmethod=postname=test><tr><td><inputtype=textname=sname><...
test.asp
<form action=test2.asp method=post name=test>
<tr>
<td><input type=text name=sname><input type=submit name=submit value=修改></td>
</tr>
</form>
test2.asp
<!--#include file="conn.asp"-->
<%
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from biao set sname = '"&trim(request("sname"))&"' where sname = null order by id asc",conn,1,3
rs.update
rs.close
%>
'数据库表的名字为biao,字段有id(自动编号),sname(大名称),others(其它字段),其中others都是有值的,但sname有的有值,有的为空,如何将输入的sname的值批量填充到biao中
sname为空的记录中,谢谢各位高手,请指点! 展开
<form action=test2.asp method=post name=test>
<tr>
<td><input type=text name=sname><input type=submit name=submit value=修改></td>
</tr>
</form>
test2.asp
<!--#include file="conn.asp"-->
<%
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from biao set sname = '"&trim(request("sname"))&"' where sname = null order by id asc",conn,1,3
rs.update
rs.close
%>
'数据库表的名字为biao,字段有id(自动编号),sname(大名称),others(其它字段),其中others都是有值的,但sname有的有值,有的为空,如何将输入的sname的值批量填充到biao中
sname为空的记录中,谢谢各位高手,请指点! 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询