id=request(id)
id=split(id,,)
hits=request(hits)
hits=split(hits,,)
regtime=request(regtime)
regtime=split(regtime,,)
for i=lbound(id) to ubound(id)
set rs = server.createobject(adodb.recordset)
sql= select * from article where id =&id(i)
if not rs.eof then
rs(hits)=hits(i)
rs(regtime)=regtime(i)
rs.update
end if
next
%>
