?? list_flash.asp
字號:
<%@LANGUAGE="VBSCRIPT" codepage=936 %>
<!--#include file="Connections/news.asp" -->
<!--#include file="head_flash.asp" -->
<%
Dim rsn__MMColParam
rsn__MMColParam = "1"
if (Request.QueryString("b_id") <> "") then rsn__MMColParam = Request.QueryString("b_id")
%>
<!--#include file="code.asp" -->
<!--#include file="ubb.asp" -->
<%
set rsn = Server.CreateObject("ADODB.Recordset")
rsn.ActiveConnection = MM_news_STRING
rsn.Source = "SELECT n_id, b_id, n_title, n_data FROM news WHERE b_id = " + Replace(rsn__MMColParam, "'", "''") + " ORDER BY n_data DESC"
rsn.CursorType = 0
rsn.CursorLocation = 2
rsn.LockType = 3
rsn.Open()
rsn_numRows = 0
%>
<%
Dim rsc__MMColParam
rsc__MMColParam = "1"
if (Request.QueryString("true") <> "") then rsc__MMColParam = Request.QueryString("true")
%>
<%
set rsc = Server.CreateObject("ADODB.Recordset")
rsc.ActiveConnection = MM_news_STRING
rsc.Source = "SELECT n_id, n_title FROM news WHERE n_com = " + Replace(rsc__MMColParam, "'", "''") + " ORDER BY n_data DESC"
rsc.CursorType = 0
rsc.CursorLocation = 2
rsc.LockType = 3
rsc.Open()
rsc_numRows = 0
%>
<%
set rsb = Server.CreateObject("ADODB.Recordset")
rsb.ActiveConnection = MM_news_STRING
rsb.Source = "SELECT * FROM big"
rsb.CursorType = 0
rsb.CursorLocation = 2
rsb.LockType = 3
rsb.Open()
rsb_numRows = 0
%>
<%
set rsh = Server.CreateObject("ADODB.Recordset")
rsh.ActiveConnection = MM_news_STRING
rsh.Source = "SELECT n_id, b_id, n_title, n_hit FROM news ORDER BY n_hit DESC"
rsh.CursorType = 0
rsh.CursorLocation = 2
rsh.LockType = 3
rsh.Open()
rsh_numRows = 0
%>
<%
Dim Repeat1__numRows
Repeat1__numRows = -1
Dim Repeat1__index
Repeat1__index = 0
rsb_numRows = rsb_numRows + Repeat1__numRows
%>
<%
Dim Repeat3__numRows
Repeat3__numRows = 10
Dim Repeat3__index
Repeat3__index = 0
rsc_numRows = rsc_numRows + Repeat3__numRows
%>
<%
Dim Repeat4__numRows
Repeat4__numRows = 10
Dim Repeat4__index
Repeat4__index = 0
rsh_numRows = rsh_numRows + Repeat4__numRows
%>
<%
Dim Repeat2__numRows
Repeat2__numRows = 20
Dim Repeat2__index
Repeat2__index = 0
rsn_numRows = rsn_numRows + Repeat2__numRows
%>
<%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters
' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "="
MM_keepURL="":MM_keepForm="":MM_keepBoth="":MM_keepNone=""
' add the URL parameters to the MM_keepURL string
For Each Item In Request.QueryString
NextItem = "&" & Item & "="
If (InStr(1,MM_removeList,NextItem,1) = 0) Then
MM_keepURL = MM_keepURL & NextItem & Server.URLencode(Request.QueryString(Item))
End If
Next
' add the Form variables to the MM_keepForm string
For Each Item In Request.Form
NextItem = "&" & Item & "="
If (InStr(1,MM_removeList,NextItem,1) = 0) Then
MM_keepForm = MM_keepForm & NextItem & Server.URLencode(Request.Form(Item))
End If
Next
' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
if (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
if (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1)
if (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
If (firstItem <> "") Then
MM_joinChar = "&"
Else
MM_joinChar = ""
End If
End Function
%>
<SCRIPT RUNAT=SERVER LANGUAGE=VBSCRIPT>
function DoTrimProperly(str, nNamedFormat, properly, pointed, points)
dim strRet
strRet = Server.HTMLEncode(str)
strRet = replace(strRet, vbcrlf,"")
strRet = replace(strRet, vbtab,"")
If (LEN(strRet) > nNamedFormat) Then
strRet = LEFT(strRet, nNamedFormat)
If (properly = 1) Then
Dim TempArray
TempArray = split(strRet, " ")
Dim n
strRet = ""
for n = 0 to Ubound(TempArray) - 1
strRet = strRet & " " & TempArray(n)
next
End If
If (pointed = 1) Then
strRet = strRet & points
End If
End If
DoTrimProperly = strRet
End Function
</SCRIPT>
<%
' *** 小田工作室UD插件系列 Limit Pages List v1.0.0 (改編自PagesList)
' set the record count
rsn_total = rsn.RecordCount
' set the number of rows displayed on this page
If (rsn_numRows < 0) Then
rsn_numRows = rsn_total
Elseif (rsn_numRows = 0) Then
rsn_numRows = 1
End If
' set the first and last displayed record
rsn_first = 1
rsn_last = rsn_first + rsn_numRows - 1
' if we have the correct record count, check the other stats
If (rsn_total <> -1) Then
If (rsn_first > rsn_total) Then rsn_first = rsn_total
If (rsn_last > rsn_total) Then rsn_last = rsn_total
If (rsn_numRows > rsn_total) Then rsn_numRows = rsn_total
End If
%>
<%
' *** Recordset Stats: if we don't know the record count, manually count them
If (rsn_total = -1) Then
' count the total records by iterating through the recordset
rsn_total=0
While (Not rsn.EOF)
rsn_total = rsn_total + 1
rsn.MoveNext
Wend
' reset the cursor to the beginning
If (rsn.CursorType > 0) Then
rsn.MoveFirst
Else
rsn.Requery
End If
' set the number of rows displayed on this page
If (rsn_numRows < 0 Or rsn_numRows > rsn_total) Then
rsn_numRows = rsn_total
End If
' set the first and last displayed record
rsn_first = 1
rsn_last = rsn_first + rsn_numRows - 1
If (rsn_first > rsn_total) Then rsn_first = rsn_total
If (rsn_last > rsn_total) Then rsn_last = rsn_total
End If
%>
<%
' *** Move To Record and Go To Record: declare variables
Set MM_rs = rsn
MM_rsCount = rsn_total
MM_size = rsn_numRows
MM_uniqueCol = ""
MM_paramName = ""
MM_offset = 0
MM_atTotal = false
MM_paramIsDefined = false
If (MM_paramName <> "") Then
MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
End If
%>
<%
' *** Move To Record: handle 'index' or 'offset' parameter
if (Not MM_paramIsDefined And MM_rsCount <> 0) then
' use index parameter if defined, otherwise use offset parameter
r = Request.QueryString("index")
If r = "" Then r = Request.QueryString("offset")
If r <> "" Then MM_offset = Int(r)
' if we have a record count, check if we are past the end of the recordset
If (MM_rsCount <> -1) Then
If (MM_offset >= MM_rsCount Or MM_offset = -1) Then ' past end or move last
If ((MM_rsCount Mod MM_size) > 0) Then ' last page not a full repeat region
MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
Else
MM_offset = MM_rsCount - MM_size
End If
End If
End If
' move the cursor to the selected record
i = 0
While ((Not MM_rs.EOF) And (i < MM_offset Or MM_offset = -1))
MM_rs.MoveNext
i = i + 1
Wend
If (MM_rs.EOF) Then MM_offset = i ' set MM_offset to the last possible record
End If
%>
<%
' *** Move To Record: if we dont know the record count, check the display range
If (MM_rsCount = -1) Then
' walk to the end of the display range for this page
i = MM_offset
While (Not MM_rs.EOF And (MM_size < 0 Or i < MM_offset + MM_size))
MM_rs.MoveNext
i = i + 1
Wend
' if we walked off the end of the recordset, set MM_rsCount and MM_size
If (MM_rs.EOF) Then
MM_rsCount = i
If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount
End If
' if we walked off the end, set the offset based on page size
If (MM_rs.EOF And Not MM_paramIsDefined) Then
If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
If ((MM_rsCount Mod MM_size) > 0) Then
MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
Else
MM_offset = MM_rsCount - MM_size
End If
End If
End If
' reset the cursor to the beginning
If (MM_rs.CursorType > 0) Then
MM_rs.MoveFirst
Else
MM_rs.Requery
End If
' move the cursor to the selected record
i = 0
While (Not MM_rs.EOF And i < MM_offset)
MM_rs.MoveNext
i = i + 1
Wend
End If
%>
<%
' *** Move To Record: update recordset stats
' set the first and last displayed record
rsn_first = MM_offset + 1
rsn_last = MM_offset + MM_size
If (MM_rsCount <> -1) Then
If (rsn_first > MM_rsCount) Then rsn_first = MM_rsCount
If (rsn_last > MM_rsCount) Then rsn_last = MM_rsCount
End If
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -