欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

asp批量修改記錄的代碼

 更新時(shí)間:2008年06月25日 17:14:35   作者:  
asp 數(shù)組 批量修改記錄的實(shí)現(xiàn)代碼
<%
'asp 數(shù)組 批量修改記錄
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

%>

相關(guān)文章

最新評論