关于JSP页面抱错找不到符号求救啊
小弟运行这段JSP代码总抱错找不到符号 大家指点下啊谢谢啦
<%@ page contentType= "text/html;charset=gb2312 "%>
<table width= "180 " height= "18 " border= "0 " cellpadding= "0 " cellspacing= "0 ">
<form method= "POST " action= "login.jsp ">
<%
//是否登陆
if((String)session.getValue( "user_name ")!=null)
{
String name=(String)session.getAttribute( "user_name ");
sql= "select * from member where user_name= ' "+name+ " ' ";
rs=stmt.executeQuery(sql);
if(rs.next()){
%>
<tr align= "justify " valign= "top ">
<td width= "120 " height= "20 "> 用户名: </td>
<td width= "51 " height= "20 "> <%=rs.getString
( "user_name ")%> </td>
</tr>
<tr>
<td height= "25 "> 地址: </td>
<td height= "25 "> </td>
</tr>
<tr>
<td height= "25 "
colspan= "2 "> <div align= "center "> <a href= "index.jsp?loginout=true "> 退出登录 </a> </div>
</td>
</tr>
<%
}
}else
//没有