<%
........
if(rs.next())
{
yuan_num=rs.getString("bianhao");
%>
<jsp:forward page="peo_show.jsp?id=<%=yuan_num%>"/> //<------这有错
<%
}
<jsp:forward > 标记中不允许有表达式的吧! 你用下面的方法可以解决的!
<%
........
if(rs.next())
{
yuan_num=rs.getString("bianhao");
response.sendRedirect("peo_show.jsp?id=" + yuan_num);
}
%>