📄 user.asp
字号:
<!--#include file="top.asp"-->
<%
if session("user_id")="" then
response.write "<script language='javascript'>" & VbCRlf
response.write "alert('非法操作!');" & VbCrlf
response.write "history.go(-1);" & vbCrlf
response.write "</script>" & VbCRLF
else
%>
<TABLE width=760 border=0 align=center cellpadding="4">
<TBODY>
<TR>
<TD vAlign=top width=161><TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD><IMG height=10 src="images/kuai01.gif" width=161></TD>
</TR>
<TR>
<TD> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width=11 background=images/kuai04.gif> </TD>
<TD bgColor=#f8f8fa><table width="100%" border="0">
<tr>
<td><IMG height=8 src="images/dot.gif" width=4> <strong></strong>店铺管理中心</td>
</tr>
<tr>
<td><a href="user_edit.asp"> 基本资料管理</a></td>
</tr>
<tr>
<td><a href="shop_img.asp"> 店铺图片管理</a></td>
</tr>
<tr>
<td><a href="goods.asp"> 商品管理</a></td>
</tr>
<tr>
<td> 店铺帮助</td>
</tr>
<tr>
<td> <a href="user_logout.asp">店长退出</a></td>
</tr>
<tr>
<td> 注销帐号</td>
</tr>
</table></TD>
<TD width=11 background=images/kuai05.gif> </TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
<TR>
<TD><IMG height=15 src="images/kuai02.gif" width=161></TD>
</TR>
<TR>
<TD> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width=11 background=images/kuai04.gif> </TD>
<TD bgColor=#f8f8fa><table width="100%" border="0">
<tr>
<td><IMG height=8 src="images/dot.gif" width=4> <strong></strong>本站新闻</td>
</tr>
<tr>
<td><table width="100%" border="0" style="border-collapse: collapse">
<%
Set rs= conn.execute("select * from news order by news_id desc" )
do while not rs.eof
%>
<tr>
<td height=18 >·<a href="news_info.asp?news_id=<%=rs("news_id")%>" target="_blank"><%=rs("news_title")%></a></td>
<% i=i+1
if i>=6 then exit do
rs.movenext
loop
rs.close
set rs=nothing
%>
</tr>
</table></td>
</tr>
</table>
</TD>
<TD width=11 background=images/kuai05.gif> </TD>
</TR>
</TABLE></TD>
</TR>
<TR>
<TD bgColor=#dbdbdb><IMG height=10 src="images/kuai03.gif" width=161></TD>
</TR>
<TR>
<TD height=5 bgColor=#dbdbdb><IMG height=5
src="images/kuai14.gif" width=161></TD>
</TR>
</TABLE></TD>
<TD align="center" vAlign=top>
<p> </p><table width="75%" border="0">
<tr>
<td align="center"><font color="#FF0000"><%=session("user_name")%></font>,您已经成功登陆! </td>
</tr>
</table>
</TD>
</TR>
</TBODY>
</TABLE>
<%end if%>
<!--#include file="bottom.asp"-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -