Struts 2.1.6 精简实例系列教程(4):新闻管理模块的实现
2009-09-23 00:00:00 来源:WEB开发网新闻编辑页的代码如下:
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>SimpleWeb新闻列表页</title>
</head>
<body>
<h5><a href="article.action">新闻列表<a/>——<a href="article!input.action">发表新闻<a/></h5>
<h2>编辑新闻</h2>
<form action="article!save.action" method="post">
<input type="hidden" name="article.id" value="${article.id}"/>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<th scope="row">新闻标题</th>
<td><input type="text" name="article.title" value="${article.title}"/> </td>
</tr>
<tr>
<th scope="row">提交者</th>
<td><input type="text" name="article.author" value="${article.author}"/> </td>
</tr>
<tr>
<th scope="row">新闻内容</th>
<td><textarea rows="20" cols="70" name="article.content">${article.content}</textarea> </td>
</tr>
<tr>
<th scope="row"> </th>
<td><input type="submit" value="保存"/></td>
</tr>
</table>
</form>
</body>
</html>
输入http://localhost:8060/SimpleWeb/admin/article.action进入新闻列表页面,运行效果截图:
图片看不清楚?请点击这里查看原图(大图)。
好,明天新的一个星期的工作日,早睡早起!敬请大家继续关注我的Struts 2.1.6 精简实例系列教程。
更多精彩
赞助商链接