<%@page contentType="text/html; charset=GBK" %>
<html>
  <head>  </head>
  
  <body>
 我正在学习response对象的setContentType方法的使用<br>
<big>将当前页面保存为msword文档吗?</big>  
<form method="get">
<input type="submit" name="submit" value="保存">
</form>
<%
request.setCharacterEncoding("GBK");
if(request.getParameter("submit").equals("保存"))
response.setContentType("application/msword;charset=gb2312");
 %>
  </body>
</html>
哪错了?