<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
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 'submit.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>
  
  <body>
    <form method="post" action="/noteBook/servlet/Submit">
     姓名: <input type="text" name="username"><br>
     邮箱: <input type="text" name="email" ><br>
     内容: <textarea name="content" rows="10" cols="60" ><br>
     <input type="submit" value="提交">
     <input type="reset" value="重置">
    </form>
  </body>
</html>
就一个表单,可是用浏览器打开后显示不正常

解决方案 »

  1.   

    内容: <textarea name="content" rows="10" cols="60" >
            <input type="submit" value="提交">
            <input type="reset" value="重置">
    </textarea>
        </form>
      

  2.   

    <form method="post" action="/noteBook/servlet/Submit">
            姓名: <input type="text" name="username">
            邮箱: <input type="text" name="email" >
            内容: <textarea name="content" rows="10" cols="60" ></textarea>
            <input type="submit" value="提交">
            <input type="reset" value="重置">
        </form>