📄 inc_newyp.asp
字号:
<%
'┌─ 风云ASP在线 ────────────────────────┐
'│ │
'│ 作者:赵振波. http://www.fyasp.com │
'│ │
'│ Q Q:176189168 │
'│ │
'│ Email:fy96@163.com │
'│ │
'│ 程序定做,系统开发,网站制作,提供高质量的网络产品、技术和服务!│
'│ │
'│【版权声明】 │
'│ │
'│ 本程序版权归坐看风云所有,未经授权擅自修改、复制或散布本程序│
'│ │
'│的部分或全部,将承受严厉的民事和刑事处罚,对已知的违反者将给予法 │
'│ │
'│律范围内的全面制裁。对非法使用此程序所造成的一切后果本人概不负责!│
'│ │
'└─────────────────── http://www.fyasp.com ──┘
%>
<%
Dim rdsnewyp
Dim sqlnewyp
set rdsnewyp = Server.CreateObject("ADODB.Recordset")
sqlnewyp = "select top 8 MemberKey,CompanyName,jb from Dat_Member where State=0 and MemberType=2 and jb=1 order by MemberKey desc"
rdsnewyp.Open sqlnewyp,Conn,1,1
if not rdsnewyp.EOF then
Response.Write "<table width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0"">"
do while not rdsnewyp.EOF
Response.Write "<tr>"& VbCRLF
Response.Write "<td height=""19""> <font color=""#FF6600"">·</font><a href=""hy/company.asp?cid="&rdsnewyp("MemberKey")&""" target=""_blank"">"&leftt(rdsnewyp("CompanyName"),19)&"</a></td>"& VbCRLF
Response.Write "</tr>"& VbCRLF
rdsnewyp.MoveNext
loop
Response.Write "<tr>"& VbCRLF
Response.Write "<td height=""5""></td>"& VbCRLF
Response.Write "</tr>"& VbCRLF
Response.Write "</table>"
end if
rdsnewyp.Close
set rdsnewyp = nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -