首页 > 学院 > 开发设计 > 正文

ASP常用函数:GetRsRows()

2019-11-17 04:12:30
字体:
来源:转载
供稿:网友
<%
Function GetRsRows(oRs)
    Dim aArray
    ReDim aArray(0, -1)
    If TypeName(oRs) = "Recordset" Then
        If Not ors.BOF Then ors.MoveFirst
        If Not ors.EOF Then aArray = ors.GetRows()
    End If
    GetRsRows = aArray
End Function
%>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表