⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 top.jsp

📁 一个 网上答疑系统 与大家分享 jsp+sql
💻 JSP
字号:
<%@ page contentType="text/html; charset=GB2312" %>
<html>
<head>
<LINK href="Style.css" type=text/css rel=stylesheet>
<title>在线答疑系统</title>
<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
}
.style1 {color: #FF0000}
-->
</style>
</head>

<body topmargin=0>


<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td height=70></td>
  </tr>
</table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>

    <td height=22 width=186 bgcolor=#33FF00 align=center style="color:#fffccc"> 在线答疑系统 </td>
<%
String userid;
if((String)session.getAttribute("suserid")==null)
userid="访客";
else
userid=(String)session.getAttribute("suserid");
%>
    <td bgcolor=#f3f3f3 >&nbsp;::::::<span class="style1">欢迎<%=userid%>!</span></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -