文章列表类别(43)


        If Not IsNumeric(orders) Then Exit Function
        On Error Resume Next
        If CInt(orders) = 1 Then
            '-- 首页显示按时间升序排列
            strOrder = "And isIndex > 0 Order By LinkTime Desc,LinkID Desc"
        ElseIf CInt(orders) = 2 Then
            '-- 首页显示按点击数升序排列
            strOrder = "And isIndex > 0 Order By LinkHist Desc,LinkID Desc"
        ElseIf CInt(orders) = 3 Then
            '-- 首页显示按点击数降序排列
            strOrder = "And isIndex > 0 Order By LinkHist Desc,LinkID Asc"
        ElseIf CInt(orders) = 4 Then
            '-- 所有按升序排列
            strOrder = "Order By LinkID Desc"
        ElseIf CInt(orders) = 5 Then
            '-- 所有按降序排列
            strOrder = "Order By LinkID Asc"
        ElseIf CInt(orders) = 6 Then
            '-- 所有按点击数升序排列
            strOrder = "Order By LinkHist Desc,LinkID Desc"
        ElseIf CInt(orders) = 7 Then
            '-- 所有按点击数降序排列
            strOrder = "Order By LinkHist Desc,LinkID Asc"
        ElseIf CInt(orders) = 8 Then
            '-- 首页显示按名称排列

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/3583.html