logopage.asp
来自「基于asp的博客系统+论文(代码齐全)经过调试」· ASP 代码 · 共 15 行
ASP
15 行
<%
Dim LogoURL
if request.QueryString("user") <> "" then
call creaters(rs_title,"select * from title where username='" & request.QueryString("user") & "'")
if not rs_title.eof then
LogoURL = rs_title("LogoSite") & ""
end if
call closers(rs_title)
end if
if trim(LogoURL) = "" then
LogoURL = "images/WebLogo.gif"
end if
response.Write("<img src='" & LogoURL & "' width=88 height=31>")
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?