大侠们帮我看看啊 
接收页出现乱码了....传递页:
<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
  </head>
  <script type="text/javascript">  </script>
  <body>
  <form action="xinxi.jsp" method="post" name="form1">
<table>  
<tr> 
<td>产品名称:</td>
<td><input name="title"></td>
</tr>
<tr>
<td>产品介绍</td>
<td><textarea  name="content1"  style="display:none"></textarea>
<iframe ID="eWebEditor1" src="eWebEditor/ewebeditor.htm?id=content1&style=coolblue" frameborder="0" scrolling="no" width="500" HEIGHT="350"></iframe></td>
</tr>
<tr>
<td><input type="submit"  value="提交"></td>
</tr>
</table>
   </form>
  </body>
</html>
接收页:
<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'xinxi.jsp' starting page</title>
    
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<%
String xinxi=request.getParameter("content1");
 %>
  </head>
  
  <body>
    <table>
     <tr>
     <td><%=xinxi %></td>
     </tr>
    </table>
  </body>
</html>