📄 flashchannel.asp
字号:
Dim strHtmlFront, strHtmlPage
strHtmlFront = Newasp.HtmlPrefix & Newasp.Supplemental(ClassID, 3) & "_"
strHtmlPage = htmlshowpage(CurrentPage, TotalPageNum, TotalNumber, maxperpage, strHtmlFront, Newasp.HtmlExtName, strClassName)
HtmlTemplate = HtmlContent
HtmlTemplate = Replace(HtmlTemplate, TempListContent, ListContent)
HtmlTemplate = Replace(HtmlTemplate, "{$ReadListPage}", strHtmlPage)
HtmlTemplate = Replace(HtmlTemplate, "[ShowRepetend]", "")
HtmlTemplate = Replace(HtmlTemplate, "[/ShowRepetend]", "")
'开始生成子分类的HTML页
HtmlFileName = HtmlFilePath & ReadListPageName(ClassID, CurrentPage)
Newasp.CreatedTextFile HtmlFileName, HtmlTemplate
If IsShowFlush = 1 Then
Response.Write "<li style=""font-size: 12px;"">生成" & Newasp.ModuleName & "列表HTML完成... <a href=" & HtmlFileName & " target=_blank>" & Server.MapPath(HtmlFileName) & "</a></li>" & vbNewLine
Response.Flush
End If
Next
End Sub
'================================================
'过程名:LoadFlashAspList
'作 用:装载FLASH列表ASP
'================================================
Private Sub LoadFlashAspList()
Dim Perownum,ii,w
If IsNull(TempListContent) Then Exit Sub
Perownum = Newasp.ChkNumeric(Newasp.HtmlSetting(4))
i = 0
Rs.MoveFirst
If TotalPageNum > 1 Then Rs.Move (CurrentPage - 1) * maxperpage
ListContent = ""
j = (CurrentPage - 1) * maxperpage + 1
If Perownum > 1 Then
ListContent = Newasp.HtmlSetting(6)
w = FormatPercent(100 / Perownum / 100,0)
End If
Do While Not Rs.EOF And i < CInt(maxperpage)
If Not Response.IsClientConnected Then Response.end
If Perownum > 1 Then
ListContent = ListContent & "<tr valign=""top"">" & vbCrLf
For ii = 1 To Perownum
ListContent = ListContent & "<td width=""" & w & """ class=""Flashlistrow"">"
If Not Rs.EOF Then
Call LoadListDetail
Rs.movenext
i = i + 1
j = j + 1
End If
ListContent = ListContent & "</td>" & vbCrLf
Next
ListContent = ListContent & "</tr>" & vbCrLf
Else
Call LoadListDetail
Rs.MoveNext
i = i + 1
j = j + 1
End If
If i >= maxperpage Then Exit Do
Loop
If Perownum > 1 Then ListContent = ListContent & "</table>" & vbCrLf
Dim strPagination
strPagination = ShowListPage(CurrentPage, TotalPageNum, TotalNumber, maxperpage, ASPCurrentPage(PageType), strClassName)
HtmlContent = Replace(HtmlContent, TempListContent, ListContent)
HtmlContent = Replace(HtmlContent, "[ShowRepetend]", "")
HtmlContent = Replace(HtmlContent, "[/ShowRepetend]", "")
HtmlContent = Replace(HtmlContent, "{$ReadListPage}", strPagination)
End Sub
'================================================
'过程名:LoadListDetail
'作 用:装载子级软件列表细节
'================================================
Private Sub LoadListDetail()
Dim sTitle, sTopic, title, ListStyle
Dim FlashUrl, FlashTime, sClassName,strminiature
Dim miniatureUrl, miniature,Introduce
ListContent = ListContent & TempListContent
If (i Mod 2) = 0 Then
ListStyle = 1
Else
ListStyle = 2
End If
If strlen > 0 Then
sTitle = Newasp.GotTopic(Rs("title"),strlen)
Else
sTitle = Rs("title")
End If
On Error Resume Next
If CInt(CreateHtml) <> 0 Then
FlashUrl = ChannelRootDir & Rs("HtmlFileDir") & Newasp.ShowDatePath(Rs("HtmlFileDate"), Newasp.HtmlPath) & ReadPagination(0)
sClassName = ChannelRootDir & Rs("HtmlFileDir")
Else
FlashUrl = ChannelRootDir & "show.asp?id=" & Rs("flashid")
sClassName = ChannelRootDir & "list.asp?classid=" & Rs("ClassID")
End If
If Not IsNull(Rs("miniature")) Then
strminiature = Rs("miniature")
End If
miniatureUrl = Newasp.GetImageUrl(strminiature, Newasp.ChannelDir)
miniature = Newasp.GetFlashAndPic(miniatureUrl, CInt(Newasp.HtmlSetting(7)), CInt(Newasp.HtmlSetting(8)))
miniature = "<a href='" & FlashUrl & "' title='" & Rs("title") & "'>" & miniature & "</a>"
sClassName = "<a href='" & sClassName & "' title='" & Rs("ClassName") & "'>" & Rs("ClassName") & "</a>"
title = "<a href='" & FlashUrl & "' title='" & Rs("title") & "' class=""flashtopic"">" & sTitle & "</a>"
Introduce = Newasp.CutString(Rs("Introduce"), CInt(Newasp.HtmlSetting(3)))
FlashTime = Newasp.ShowDateTime(Rs("addTime"), CInt(Newasp.HtmlSetting(2)))
ListContent = Replace(ListContent, "{$ClassifyName}", sClassName)
ListContent = Replace(ListContent, "{$FlashTitle}", title)
ListContent = Replace(ListContent, "{$FlashTopic}", sTitle)
ListContent = Replace(ListContent, "{$FlashUrl}", FlashUrl)
ListContent = Replace(ListContent, "{$Miniature}", miniature)
ListContent = Replace(ListContent, "{$FlashID}", Rs("flashid"))
ListContent = Replace(ListContent, "{$FlashHits}", Rs("AllHits"))
ListContent = Replace(ListContent, "{$Star}", Rs("star"))
ListContent = Replace(ListContent, "{$FlashDateTime}", FlashTime)
ListContent = Replace(ListContent, "{$Introduce}", Introduce)
ListContent = Replace(ListContent, "{$ListStyle}", ListStyle)
ListContent = Replace(ListContent, "{$Author}", Newasp.ChkNull(Rs("Author")))
ListContent = Replace(ListContent, "{$UserName}", Rs("UserName"))
ListContent = Replace(ListContent, "{$grade}", Rs("grade"))
ListContent = Replace(ListContent, "{$IsTop}", Rs("IsTop"))
ListContent = Replace(ListContent, "{$FileSize}", ReadFilesize(Rs("filesize")))
ListContent = Replace(ListContent, "{$IsBest}", Rs("IsBest"))
ListContent = Replace(ListContent, "{$Order}", j)
End Sub
'///---FLASH列表结束
'///---FLASH列表开始,如:最新,推荐,热门FLASH
'-- 最新FLASH列表
Public Sub BuildNewFlash()
CurrentPage = Newasp.ChkNumeric(Request("page"))
If CurrentPage = 0 Then CurrentPage = 1
Response.Write LoadOtherFlshList(3)
End Sub
'-- 热门FLASH列表
Public Sub BuildHotFlash()
CurrentPage = Newasp.ChkNumeric(Request("page"))
If CurrentPage = 0 Then CurrentPage = 1
Response.Write LoadOtherFlshList(2)
End Sub
'-- 推荐FLASH列表
Public Sub BuildBestFlash()
CurrentPage = Newasp.ChkNumeric(Request("page"))
If CurrentPage = 0 Then CurrentPage = 1
Response.Write LoadOtherFlshList(1)
End Sub
'-- 推荐FLASH列表
Public Sub BuildFlashSpecial()
CurrentPage = Newasp.ChkNumeric(Request("page"))
If CurrentPage = 0 Then CurrentPage = 1
Response.Write LoadOtherFlshList(1)
End Sub
'=================================================
'过程名:LoadOtherFlshList
'作 用:载入其它FLASH列表
'=================================================
Public Function LoadOtherFlshList(t)
On Error Resume Next
Dim HtmlFileName, SQL1, SQL2
skinid = CLng(Newasp.ChannelSkin)
Newasp.LoadTemplates ChannelID, 5, skinid
HtmlFilePath = Newasp.InstallDir & Newasp.ChannelDir & "special/"
HtmlContent = Newasp.HtmlContent
HtmlContent = Replace(HtmlContent, "{$ChannelRootDir}", ChannelRootDir)
HtmlContent = Replace(HtmlContent, "{$InstallDir}", strInstallDir)
HtmlContent = Replace(HtmlContent, "{$ChannelID}", ChannelID)
HtmlContent = Replace(HtmlContent, "{$ModuleName}", Newasp.ModuleName)
HtmlContent = Replace(HtmlContent, "{$FlashIndex}", strIndexName)
PageType = 3
If CInt(t) = 1 Then
strClassName = Newasp.HtmlSetting(10)
SQL1 = "And IsBest>0"
SQL2 = "And A.IsBest>0 ORDER BY A.addTime DESC,A.flashid DESC"
ElseIf CInt(t) = 2 Then
strClassName = Newasp.HtmlSetting(11)
SQL1 = ""
SQL2 = "ORDER BY A.AllHits DESC,A.addTime DESC,A.flashid DESC"
Else
strClassName = Newasp.HtmlSetting(12)
SQL1 = ""
SQL2 = "ORDER BY A.addTime DESC ,A.flashid DESC"
End If
HtmlContent = Replace(HtmlContent, "{$PageTitle}", strClassName)
Call ReplaceString
maxperpage = CLng(Newasp.HtmlSetting(1))
If CLng(CurrentPage) = 0 Then CurrentPage = 1
'记录总数
TotalNumber = Newasp.Execute("SELECT COUNT(flashid) FROM NC_FlashList WHERE ChannelID = " & ChannelID & " And isAccept>0 " & SQL1 & "")(0)
If TotalNumber >= CLng(Newasp.HtmlSetting(5)) Then TotalNumber = CLng(Newasp.HtmlSetting(5))
TotalPageNum = CLng(TotalNumber / maxperpage) '得到总页数
If TotalPageNum < TotalNumber / maxperpage Then TotalPageNum = TotalPageNum + 1
If CurrentPage < 1 Then CurrentPage = 1
If CurrentPage > TotalPageNum Then CurrentPage = TotalPageNum
Set Rs = CreateObject("ADODB.Recordset")
SQL = "SELECT TOP " & CLng(Newasp.HtmlSetting(5)) & " A.flashid,A.ClassID,A.title,A.ColorMode,A.FontMode,A.Introduce,A.filesize,A.Author,A.star,A.miniature,A.UserName,A.addTime,A.AllHits,A.grade,A.HtmlFileDate,A.isBest,C.ClassName,C.ParentID,C.ParentStr,C.skinid,C.HtmlFileDir,C.ChildStr,C.UseHtml FROM [NC_FlashList] A INNER JOIN [NC_Classify] C On A.ClassID=C.ClassID WHERE A.ChannelID=" & ChannelID & " And A.isAccept>0 " & SQL2
If isSqlDataBase = 1 Then
Set Rs = Newasp.Execute(SQL)
Else
Rs.Open SQL, Conn, 1, 1
End If
If Rs.BOF And Rs.EOF Then
HtmlContent = Replace(HtmlContent, "{$ReadListPage}", "还没有找到任何" & Newasp.ModuleName & "")
HtmlContent = Replace(HtmlContent, Newasp.CutFixContent(HtmlContent, "[ShowRepetend]", "[/ShowRepetend]", 1), "")
If CreateHtml <> 0 Then
Newasp.CreatPathEx (HtmlFilePath)
HtmlFileName = HtmlFilePath & ReadListPageName(ClassID, CurrentPage)
Newasp.CreatedTextFile HtmlFileName, HtmlContent
If IsShowFlush = 1 Then
Response.Write "<li style=""font-size: 12px;"">生成" & Newasp.ModuleName & "列表HTML完成... <a href=" & HtmlFileName & " target=_blank>" & Server.MapPath(HtmlFileName) & "</a></li>" & vbNewLine
Response.Flush
End If
End If
Else
TempListContent = Newasp.CutFixContent(HtmlContent, "[ShowRepetend]", "[/ShowRepetend]", 1)
If CreateHtml <> 0 Then
Call LoadOtherListHtml(t)
Else
Call LoadFlashAspList
End If
End If
Rs.Close: Set Rs = Nothing
If CreateHtml = 0 Then LoadOtherFlshList = HtmlContent
End Function
'================================================
'过程名:LoadOtherListHtml
'作 用:装载其它列表并生成HTML
'================================================
Private Sub LoadOtherListHtml(t)
Dim HtmlFileName, sulCurrentPage
Dim Perownum,ii,w
If IsNull(TempListContent) Then Exit Sub
On Error Resume Next
Perownum = Newasp.ChkNumeric(Newasp.HtmlSetting(4))
Newasp.CreatPathEx (HtmlFilePath)
For CurrentPage = 1 To TotalPageNum
Rs.MoveFirst
i = 0
If TotalPageNum > 1 Then Rs.Move (CurrentPage - 1) * maxperpage
ListContent = ""
j = (CurrentPage - 1) * maxperpage + 1
If Perownum > 1 Then
ListContent = Newasp.HtmlSetting(6)
w = FormatPercent(100 / Perownum / 100,0)
End If
Do While Not Rs.EOF And i < CInt(maxperpage)
If Not Response.IsClientConnected Then Response.end
If Perownum > 1 Then
ListContent = ListContent & "<tr valign=""top"">" & vbCrLf
For ii = 1 To Perownum
ListContent = ListContent & "<td width=""" & w & """class=""Flashlistrow"">"
If Not Rs.EOF Then
Call LoadListDetail
Rs.movenext
i = i + 1
j = j + 1
End If
ListContent = ListContent & "</td>" & vbCrLf
Next
ListContent = ListContent & "</tr>" & vbCrLf
Else
Call LoadListDetail
Rs.MoveNext
i = i + 1
j = j + 1
End If
If i >= maxperpage Then Exit Do
Loop
Dim strHtmlFront, strHtmlPage
If t = 1 Then
sulCurrentPage = Newasp.HtmlPrefix & "Best"
ElseIf t = 2 Then
sulCurrentPage = Newasp.HtmlPrefix & "Hot"
Else
sulCurrentPage = Newasp.HtmlPrefix & "New"
End If
strHtmlFront = sulCurrentPage
strHtmlPage = ShowHtmlPage(CurrentPage, TotalPageNum, TotalNumber, maxperpage, strHtmlFront, Newasp.HtmlExtName, strClassName)
HtmlTemplate = HtmlContent
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -