WEB开发网
开发学院软件开发Java Struts 2.1.6 精简实例系列教程(4):新闻管理模块... 阅读

Struts 2.1.6 精简实例系列教程(4):新闻管理模块的实现

 2009-09-23 00:00:00 来源:WEB开发网   
核心提示: 新闻编辑页的代码如下:<?xmlversion="1.0"encoding="UTF-8"?><%@pagelanguage="java"contentType="text/html;charset=UTF-

新闻编辑页的代码如下:

<?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 精简实例系列教程(4):新闻管理模块的实现

Struts 2.1.6 精简实例系列教程(4):新闻管理模块的实现

图片看不清楚?请点击这里查看原图(大图)。

好,明天新的一个星期的工作日,早睡早起!敬请大家继续关注我的Struts 2.1.6 精简实例系列教程。

上一页  1 2 3 

Tags:Struts 精简 实例

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接