📄 powereasy.articlelist.asp
字号:
strtmp = strtmp & "<table width='100%'><tr>"
If rsArticle("PhotoThumb") <> "" And Not IsNull(rsArticle("PhotoThumb")) Then
If Left(rsArticle("PhotoThumb"), 4) = "http" Or Left(rsArticle("PhotoThumb"), 1) = "/" Then
strtmp = strtmp & "<td width=150 align=center><img src='" & rsArticle("PhotoThumb") & "' width='" & iWidth & "' height='" & iHeight & "' border='0' align='left'></td>"
Else
strtmp = strtmp & "<td width=150 align=center><img src='" & strInstallDir & arrTemp(3) & "/" & arrTemp(4) & "/" & rsArticle("PhotoThumb") & "' width='" & iWidth & "' height='" & iHeight & "' border='0' align='left'></td>"
End If
End If
strtmp = strtmp & "<td>"
strtmp = strtmp & ("<h4>" & ReplaceText(rsArticle("PhotoName"), 2) & "</h4> ")
If rsArticle("PhotoIntro") = "" Then
strtmp = strtmp & rsArticle("Keyword")
Else
strtmp = strtmp & GetSubStr(ReplaceText(nohtml(rsArticle("PhotoIntro")), 1), iNum, True)
End If
If PE_CBool(arrTemp(7)) Then
strtmp = strtmp & ("<div align='right'><a href='")
strtmp = strtmp & GetPhotoUrl(GetClassFild(rsArticle("ClassID"), 4), GetClassFild(rsArticle("ClassID"), 3), rsArticle("UpdateTime"), rsArticle("PhotoID"), GetClassFild(rsArticle("ClassID"), 2), rsArticle("InfoPurview"), rsArticle("InfoPoint"))
strtmp = strtmp & ("' Target=""_blank"">" & strShowDetal & "</a></div>")
End If
strtmp = strtmp & "</td></tr></table>"
strtmp = strtmp & "<hr>"
End Select
rsArticle.MoveNext
i = i + 1
If i >= MaxPerPage Then Exit Do
Loop
Case 2
Do While Not rsArticle.EOF
Select Case arrTemp(2)
Case "Article"
If PE_CBool(arrTemp(7)) Then
strtmp = strtmp & ("<li><a href='" & GetArticleUrl(GetClassFild(rsArticle("ClassID"), 4), GetClassFild(rsArticle("ClassID"), 3), rsArticle("UpdateTime"), rsArticle("ArticleID"), GetClassFild(rsArticle("ClassID"), 2), rsArticle("InfoPurview"), rsArticle("InfoPoint")) & "' Target=""_blank"">" & GetSubStr(rsArticle("Title"), iNum, False) & "</a>")
Else
strtmp = strtmp & ("<li>" & GetSubStr(ReplaceText(rsArticle("Title"), 2), iNum, False))
End If
Case "Soft"
If PE_CBool(arrTemp(7)) Then
strtmp = strtmp & ("<li><a href='" & GetSoftUrl(GetClassFild(rsArticle("ClassID"), 4), GetClassFild(rsArticle("ClassID"), 3), rsArticle("UpdateTime"), rsArticle("SoftID")) & "' Target=""_blank"">" & GetSubStr(rsArticle("SoftName"), iNum, False) & "</a>")
Else
strtmp = strtmp & ("<li>" & GetSubStr(ReplaceText(rsArticle("SoftName"), 2), iNum, False))
End If
Case "Photo"
If PE_CBool(arrTemp(7)) Then
strtmp = strtmp & ("<li><a href='" & GetPhotoUrl(GetClassFild(rsArticle("ClassID"), 4), GetClassFild(rsArticle("ClassID"), 3), rsArticle("UpdateTime"), rsArticle("PhotoID"), GetClassFild(rsArticle("ClassID"), 2), rsArticle("InfoPurview"), rsArticle("InfoPoint")) & "' Target=""_blank"">" & GetSubStr(rsArticle("PhotoName"), iNum, False) & "</a>")
Else
strtmp = strtmp & ("<li>" & GetSubStr(ReplaceText(rsArticle("PhotoName"), 2), iNum, False))
End If
End Select
If PE_CBool(arrTemp(6)) Then strtmp = strtmp & ("[" & Year(rsArticle("UpdateTime")) & strYear & Month(rsArticle("UpdateTime")) & strMonth & Day(rsArticle("UpdateTime")) & strDay & "]")
strtmp = strtmp & "</li>"
rsArticle.MoveNext
i = i + 1
If i >= MaxPerPage Then Exit Do
Loop
Case 3
j = 1
strtmp = strtmp & "<table class=ItemList><tr>"
Do While Not rsArticle.EOF
Select Case arrTemp(2)
Case "Article"
strtmp = strtmp & "<td><table width='100%'><tr><td align='center' valign='top' class='ArticlePic'>"
strtmp = strtmp & "<a href='" & strInstallDir & arrTemp(3) & "/ShowArticle.asp?ArticleID=" & rsArticle("ArticleID") & "' Target=""_blank"">"
If rsArticle("DefaultPicUrl") = "" Or IsNull(rsArticle("DefaultPicUrl")) Then
strtmp = strtmp & "<img src='" & strInstallDir & "images/nopic.gif' width='" & iWidth & "' height='" & iHeight & "' border='0'></a></td></tr>"
Else
If Left(rsArticle("DefaultPicUrl"), 4) = "http" Or Left(rsArticle("DefaultPicUrl"), 1) = "/" Then
strtmp = strtmp & "<img src='" & rsArticle("DefaultPicUrl") & "' width='" & iWidth & "' height='" & iHeight & "' border='0'></a></td></tr>"
Else
strtmp = strtmp & "<img src='" & strInstallDir & arrTemp(3) & "/" & arrTemp(4) & "/" & rsArticle("DefaultPicUrl") & "' width='" & iWidth & "' height='" & iHeight & "' border='0'></a></td></tr>"
End If
End If
strtmp = strtmp & "<tr><td align='center' class='ArticleName'><a href='" & GetArticleUrl(GetClassFild(rsArticle("ClassID"), 4), GetClassFild(rsArticle("ClassID"), 3), rsArticle("UpdateTime"), rsArticle("ArticleID"), GetClassFild(rsArticle("ClassID"), 2), rsArticle("InfoPurview"), rsArticle("InfoPoint")) & "' target='_blank'>" & GetSubStr(ReplaceText(rsArticle("Title"), 2), iNum, False) & "</a>"
If PE_CBool(arrTemp(6)) Then strtmp = strtmp & "<br>" & ("[" & Year(rsArticle("UpdateTime")) & strYear & Month(rsArticle("UpdateTime")) & strMonth & Day(rsArticle("UpdateTime")) & strDay & "]")
strtmp = strtmp & "</td></tr></table>"
Case "Soft"
strtmp = strtmp & "<td><table width='100%'><tr><td align='center' valign='top' class='SoftPic'>"
strtmp = strtmp & "<a href='" & strInstallDir & arrTemp(3) & "/ShowSoft.asp?SoftID=" & rsArticle("SoftID") & "' Target=""_blank"">"
If rsArticle("SoftPicUrl") = "" Or IsNull(rsArticle("SoftPicUrl")) Then
strtmp = strtmp & "<img src='" & strInstallDir & "images/nopic.gif' width='" & iWidth & "' height='" & iHeight & "' border='0'></a></td></tr>"
Else
If Left(rsArticle("SoftPicUrl"), 4) = "http" Or Left(rsArticle("SoftPicUrl"), 1) = "/" Then
strtmp = strtmp & "<img src='" & rsArticle("SoftPicUrl") & "' width='" & iWidth & "' height='" & iHeight & "' border='0'></a></td></tr>"
Else
strtmp = strtmp & "<img src='" & strInstallDir & arrTemp(3) & "/" & rsArticle("SoftPicUrl") & "' width='" & iWidth & "' height='" & iHeight & "' border='0'></a></td></tr>"
End If
End If
strtmp = strtmp & "<tr><td align='center' class='SoftName'><a href='" & GetSoftUrl(GetClassFild(rsArticle("ClassID"), 4), GetClassFild(rsArticle("ClassID"), 3), rsArticle("UpdateTime"), rsArticle("SoftID")) & "' target='_blank'>" & GetSubStr(ReplaceText(rsArticle("SoftName"), 2), iNum, False) & "</a>"
If PE_CBool(arrTemp(6)) Then strtmp = strtmp & "<br>" & ("[" & Year(rsArticle("UpdateTime")) & strYear & Month(rsArticle("UpdateTime")) & strMonth & Day(rsArticle("UpdateTime")) & strDay & "]")
strtmp = strtmp & "</td></tr></table>"
Case "Photo"
strtmp = strtmp & "<td><table width='100%'><tr><td align='center' valign='top' class='PhotoPic'>"
strtmp = strtmp & "<a href='" & strInstallDir & arrTemp(3) & "/ShowPhoto.asp?PhotoID=" & rsArticle("PhotoID") & "' Target=""_blank"">"
If rsArticle("PhotoThumb") = "" Or IsNull(rsArticle("PhotoThumb")) Then
strtmp = strtmp & "<img src='" & strInstallDir & "images/nopic.gif' width='" & iWidth & "' height='" & iHeight & "' border='0'></a></td></tr>"
Else
If Left(rsArticle("PhotoThumb"), 4) = "http" Or Left(rsArticle("PhotoThumb"), 1) = "/" Then
strtmp = strtmp & "<img src='" & rsArticle("PhotoThumb") & "' width='" & iWidth & "' height='" & iHeight & "' border='0'></a></td></tr>"
Else
strtmp = strtmp & "<img src='" & strInstallDir & arrTemp(3) & "/" & arrTemp(4) & "/" & rsArticle("PhotoThumb") & "' width='" & iWidth & "' height='" & iHeight & "' border='0'></a></td></tr>"
End If
End If
strtmp = strtmp & "<tr><td align='center' class='PhotoName'><a href='" & GetPhotoUrl(GetClassFild(rsArticle("ClassID"), 4), GetClassFild(rsArticle("ClassID"), 3), rsArticle("UpdateTime"), rsArticle("PhotoID"), GetClassFild(rsArticle("ClassID"), 2), rsArticle("InfoPurview"), rsArticle("InfoPoint")) & "' target='_blank'>" & GetSubStr(ReplaceText(rsArticle("PhotoName"), 2), iNum, False) & "</a>"
If PE_CBool(arrTemp(6)) Then strtmp = strtmp & "<br>" & ("[" & Year(rsArticle("UpdateTime")) & strYear & Month(rsArticle("UpdateTime")) & strMonth & Day(rsArticle("UpdateTime")) & strDay & "]")
strtmp = strtmp & "</td></tr></table>"
End Select
rsArticle.MoveNext
i = i + 1
j = j + 1
If j > Int(iCol) Then
strtmp = strtmp & "</td></tr><tr>"
j = 1
Else
strtmp = strtmp & "</td>"
End If
If i >= MaxPerPage Then Exit Do
Loop
strtmp = strtmp & "</tr></table>"
End Select
End If
rsArticle.Close
Set rsArticle = Nothing
strtmp = strtmp & "</td></tr></table>"
ShowArticleList = strtmp
strtmp = ""
End Function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -