code049.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>新闻发布</title>
</head>
<body>
<form action="code050.jsp" method="post">
<table border="1">
<tr>
    <td colspan="2">新闻发布</td>
</tr>
<tr>
    <td>标题:</td>
    <td><input type="text" name="title" id="title"></td>
</tr>
<tr>
    <td>内容:</td>
    <td><input type="text" name="content" id="content"></td>
</tr>
<tr>
    <td><input type="submit" name="submit" value="提交"></td>
</tr>
</table>
</form>
</body>
</html> 
  
  
  
 
 
  
 
 
 