求解!求救!
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page language="java" import="java.sql.*" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>测试</title>
</head>
<jsp:useBean id="ora" scope="page" class="com.forlink.gaofeng.Dboracle" />
<body bgcolor="#CCCCCC" text="#000000">
<FORM METHOD=POST ACTION="p.jsp">
<INPUT TYPE="checkbox" NAME="male" value="1">男<br>
<INPUT TYPE="checkbox" NAME="female" value="1">女<br>
<INPUT TYPE="submit">
</FORM>
</body>
</html>
**************************************************************************
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page language="java" import="java.sql.*" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>测试</title>
</head>
<jsp:useBean id="ora" scope="page" class="com.forlink.gaofeng.Dboracle" />
<body bgcolor="#CCCCCC" text="#000000">
<%
String malestr=request.getParameter("male");
String femalestr=request.getParameter("female");
%>
</body>
</html>
**************************************************************************
当我选中取得是value的值,复选框未选中状态,取得的值是什么???!!!好像不是“”那位高手能指点一下!!