?? bigclass.asp
字號:
end if
title=trim(rs3("title"))
title=replace(title,"<br>","")
%>
<tr>
<td height=1 colspan="2"><div align="center">
<%if mode="2" then%>
<table width="98%" border="0" cellpadding="0" cellspacing="0" background="img/line1.gif">
<tr>
<td width="65%" height="20"><img src="img/arrow02.gif" width="8" height="8"><a class=middle href="<%=newsurl%>" title="<%=title%>" target="_blank"></a><a class=middle href="<%=newsurl%>" title="<%=title%>" target="_blank"> </a><a class=middle href="<%=newsurl%>" target="_blank" title="<%=title%>"><%=img%> <<%=rs3("titletype")%>><font color="<%=rs3("titlecolor")%>">
<%if showtime="1" then%>
<%if len(title)>24 then%>
<%=left(title,24)%>
<%else%>
<%=title%>
<%end if%>
<%else%>
<%if len(title)>24 then%>
<%=left(title,24)%>
<%else%>
<%=title%>
<%end if%>
<%end if%>
</font></<%=rs3("titletype")%>></a></td>
<td width="15%" align="right"><%if showtime="1" then%>
<%=datetime%>
<%end if%>
</td>
<td width="15%" align="center"><%if showauthor="1" then%>
<%=rs3("editor")%>
<%end if%></td>
<td width="5%" align="center"><%if showclick="1" then%>
<font color=#666666><%=rs3("click")%></font>
<%end if%>
</td>
</tr>
</table>
<%else%>
<%if mode="3" then%>
<table width="95%" border="0" cellpadding="3" cellspacing="0">
<tr bgcolor="#EFEFEF">
<td width="55%"><img src="IMAGES/go.gif" width="9" height="9"><a class=middle href="<%=newsurl%>" title="<%=title%>" target="_blank"></a><a class=middle href="<%=newsurl%>" title="<%=title%>" target="_blank"> <strong><%=img%>
<%end if%>
<<%=rs3("titletype")%>><font color="<%=rs3("titlecolor")%>">
<%if showtime="1" then%>
<%if len(title)>20 then%>
<%=left(title,20)%>
<%else%>
<%=title%>
<%end if%>
<%else%>
<%if len(title)>24 then%>
<%=left(title,24)%>
<%else%>
<%=title%>
<%end if%>
<%end if%>
</font></strong></<%=rs3("titletype")%>></a> </td>
<td width="29%" align="right"><%if showtime="1" then%>
<%=datetime%>
<%end if%>
</td>
<td width="16%" align="right"><%if year(rs3("updatetime"))=year(date()) and month(rs3("updatetime"))=month(date()) and day(rs3("updatetime"))=day(date()) then%>
<img src="images/new.gif">
<%end if%>
<%if rs3("goodnews")="1" then%>
<img src="images/g.gif" >
<%end if%>
</td>
</tr>
<tr>
<td> [簡介]: <%=left(nohtml(rs3("Content")),80)%>...</td>
<td colspan="2">[網址]
<%
strText = (rs3("Content"))
posleft=Instr(strText,"<A")
posright=Instr(strText,"/A>")
posp=Instr(strText,"<P><A")+3
posp2=Instr(strText,"A></P>")
%>
<% if posp<>0 and posp2<>0 then %>
<%=mid(rs3("Content"),posp,posp2)%>
<% else %>
<% if posleft=1 then %>
<%=left(rs3("Content"),posright)%>
<% else %>
<%=right(rs3("Content"),(posright+3)-posleft)%>
<% end if %>
<% end if %>
</td>
</tr>
</table>
</div></td>
</tr>
<%end if%>
<%
rs3.MoveNext
wend
rs3.close
if more=1 then
%>
<tr>
<td width="96%" align=right height="1"><a class=class href="bigClassdeta.asp?typeid=<%=typeid%>&BigClassid=<%=request_BigClassid%>"><img src="images/more.gif" border="0" alt="更多<%=smallClassName%>"></a> </td>
<td width="4%" align=right> </td>
</tr>
<%
else
%>
<tr>
<td height="18" colspan="2"> 暫無信息</td>
</tr>
<%
end if
%>
</table>
<%else%>
<%
set rs3=server.CreateObject("ADODB.RecordSet")
%>
<table border="0" cellpadding="3" cellspacing="0" style="border-collapse: collapse" width="100%" id="AutoNumber4">
<tr>
<td height="8"> </td>
</tr>
<tr>
<td height="30" background="img/type_bg.gif"><span class="6"> <img src="img/type02.gif" width="9" height="9" align="absmiddle"> </span><font class=m_tittle><%=BigClassName%></font></td>
</tr>
<%if uselevel=1 then
if Request.cookies("key")="super" or Request.cookies("key")="typemaster" or Request.cookies("key")="bigmaster" or Request.cookies("key")="smallmaster" or Request.cookies("key")="check" then
rs3.Source="select top "&bigclassshownum&" * from News where (BigClassid=" & request_BigClassid & " and checkked=1) order by newsid DESC"
end if
if Request.cookies("key")="" then
rs3.Source="select top "&bigclassshownum&" * from News where (BigClassid=" & request_BigClassid & " and checkked=1 and newslevel=0) order by newsid DESC"
end if
if Request.cookies("key")="selfreg" then
if Request.cookies("reglevel")=3 then
rs3.Source="select top "&bigclassshownum&" * from News where (BigClassid=" & request_BigClassid & " and checkked=1 and newslevel<=3) order by newsid DESC"
end if
if Request.cookies("reglevel")=2 then
rs3.Source="select top "&bigclassshownum&" * from News where (BigClassid=" & request_BigClassid & " and checkked=1 and newslevel<=2) order by newsid DESC"
end if
if Request.cookies("reglevel")=1 then
rs3.Source="select top "&bigclassshownum&" * from News where (BigClassid=" & request_BigClassid & " and checkked=1 and newslevel<=1) order by newsid DESC"
end if
end if
else
rs3.Source="select top "&bigclassshownum&" * from News where (BigClassid=" & request_BigClassid & " and checkked=1) order by newsid DESC"
end if
rs3.Open rs3.Source,conn,1,1
if not rs3.EOF then
more=1
else more=0
end if
while not rs3.EOF
if showyear=1 then
newsurl="ReadNews.asp?NewsID=" & rs3("NewsID")
datetime="<font class=middle>(" & year(rs3("UpdateTime")) &"年"& Month(rs3("UpdateTime")) &"月"& Day(rs3("UpdateTime")) &"日)</font>"
else
newsurl="ReadNews.asp?NewsID=" & rs3("NewsID")
datetime="<font class=middle>("& Month(rs3("UpdateTime")) &"月"& Day(rs3("UpdateTime")) &"日)</font>"
end if
title=trim(rs3("title"))
title=replace(title,"<br>","")
%>
<tr>
<td height=78><div align="center">
<%if mode="4" then%>
<table width="95%" border="0" cellpadding="3" cellspacing="0">
<tr bgcolor="#EFEFEF">
<td width="65%"><img src="images/004.gif" width="8" height="10" border="0"> <a class=middle href="<%=newsurl%>" target="_blank" title="<%=title%>"><strong><font color="<%=rs3("titlecolor")%>">
<%if len(title)>20 then%>
<%=left(title,20)%>
<%else%>
<%=title%>
<%end if%>
</font></strong></a></td>
<td width="22%" align="right" bgcolor="#EFEFEF"><%if showtime="1" then%>
<%=datetime%>
<%end if%>
<%if showclick="1" then%>
<font color=#666666>[<%=rs3("click")%>]</font>
<%end if%>
</td>
<td width="13%" align="center" bgcolor="#EFEFEF"><div align="right">
<%if year(rs3("updatetime"))=year(date()) and month(rs3("updatetime"))=month(date()) and day(rs3("updatetime"))=day(date()) then%>
<img src="images/new.gif" border="0">
<%end if%>
<%if rs3("goodnews")="1" then%>
<img src="images/g.gif" border="0">
<%end if%>
</div></td>
</tr>
<tr>
<td colspan="3"> 簡介:
<%if len(rs3("content"))>100 then%>
<%=left(nohtml(rs3("content")),100)%>
<%end if%>
</td>
</tr>
</table>
<%else%>
<% if mode="1" then%>
<table width="95%" border="0" cellpadding="3" cellspacing="0">
<tr bgcolor="#EFEFEF">
<td colspan="2"><img src="images/img.gif" width="9" height="9" border="0"> <a class=middle href="<%=newsurl%>" target="_blank" title="<%=title%>"><strong><font color="<%=rs3("titlecolor")%>">
<%if len(title)>10 then%>
<%=left(title,10)%>
<%else%>
<%=title%>
<%end if%>
</font></strong></a></td>
<td width="22%" align="right" bgcolor="#EFEFEF"><%if showtime="1" then%>
<%=datetime%>
<%end if%>
<%if showclick="1" then%>
<font color=#666666>[<%=rs3("click")%>]</font>
<%end if%>
</td>
<td width="13%" align="center" bgcolor="#EFEFEF"><div align="right">
<%if year(rs3("updatetime"))=year(date()) and month(rs3("updatetime"))=month(date()) and day(rs3("updatetime"))=day(date()) then%>
<img src="images/new.gif" border="0">
<%end if%>
<%if rs3("goodnews")="1" then%>
<img src="images/g.gif" border="0">
<%end if%>
</div></td>
</tr>
<tr>
<td width="16%"><a class=middle href="ReadNews.asp?NewsID=<%=rs3("NewsID")%>" target=_blank title="<%=rs3("title")%>">
<%if rs3("picname")=("") then%>
<img src="IMAGES/Image18.gif" width="65" height="65" border=0 align="left">
<%else%>
<img src="uploadfile/<%=rs3("picname")%>" width="65" height="65" border=0 align="left">
<%end if%>
</a></td>
<td colspan="3" valign="top"><%=left(nohtml(rs3("Content")),150)%>... </td>
</tr>
</table>
<%end if%>
</div></td>
</tr>
<%end if%>
<%
rs3.MoveNext
wend
rs3.close
if more=1 then
%>
<tr>
<td width="98%" align=right height="1"><a class=class href="bigClassdeta.asp?typeid=<%=typeid%>&BigClassid=<%=request_BigClassid%>&BigClassName=<%=request_BigClassName%>"><img src="images/more.gif" border="0" alt="更多<%=smallClassName%>"></a> </td>
</tr>
<%
else
%>
<tr>
<td width="98%" height="18"> 暫無信息</td>
</tr>
<%
end if
%>
</table>
<%end if%>
</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="8"></td>
</tr>
</table></td>
</tr>
</table>
</td>
</tr>
</table>
<!--#include file=include/bottom.asp -->
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -