设为首页  
联系我们  
加入收藏  
网页制作 冲浪宝典 图形图像 操作系统 软件教学 编程开发 认证考试 安全技术 站长专区 文学驿站 娱乐天地 游戏天地 办公软件
文章搜索
您的位置: 首页 >> 文章首页 >> 编程开发 >> Java >> Web DbForms(续一)
精品推荐
Java点击TOP10
·java笔试题
·《Thinking in Java》读书笔记
·JSP的mysql_jdbc驱动程序
·异常java.sql.SQLException: Io exception:The Network Adapter could not establish connection
·Java Coder 常用软件下载地址
·org.apache.commons.dbcp.SQLNestedException解决办法
·Java图形界面开发:SWT全接触
·如何使用Java POI生成Excel表文件 !
·功能强大的在线网页编辑器
·一些非常不错的Struts 例子下载
编程开发点击TOP10
·ASP.NET 程序中常用的三十三种代码
·利用ASP.NET构建网上考试系统
·C#版的网站新闻发布系统
·(转)23种设计模式汇集
·设计ASP.NET新闻管理系统
·深山红叶袖珍PE工具箱V16正式版
·我的.NET书架 (入门篇)
·java笔试题
·C++经典电子书下载
·.NET:是什么?将走向哪里?
精选专题

Web DbForms(续一)

作者: 来源:网络文章 时间:2005-12-16 22:37:16

Web DbForms(续一)(1)

Web DbForms (续一)

(说明:由于本人水平有限,所以翻译错误在所难免。为了不给读者造成错误的概念,这里采用了中英文对照方式)

A Simple Example
一个简单例子

Description: This JSP view (service.jsp) enables the user(s) to administer the services the agency provides to its customers. The user (an employee of the agency or call center agent) should get a list of all the existing services, along with textfields and buttons to update and delete data. Finally, an empty input mask for inserting new services is needed.
描述:此JSP视图(service.jsp)允许用户管理代理商提供给客户的服务。用户(代理商的一个雇员或者呼叫中心的代表)会得到一个所有存在的服务的列表,连同文本输入框和按钮一起来更新和删除数据。最后,需要一个空的输入界面来增加新的服务。

Listing 1. -- service.jsp

<%-- import DbForms tag library --%>
<%@ taglib uri="/WEB-INF/taglib.tld" prefix="db" %>

<html>
<head>
 <db:base/>
</head>
<body>
 <db:errors/> <%-- show eventually occured errors --%>

 <db:dbform tableName="service" maxRows="*" followUp="/service.jsp">

  <%-- the header gets rendered one time --%>
  <db:header>
  <db:gotoButton caption="Menu" destination="/menu.jsp" />
  <h1>Services we provide</h1>
   <center><h3>Our existing services</h3></center>
   <table border="5" width="60%" align="CENTER">
    <tr>
     <th>ID</th>
     <th>Name</th>
     <th>Description</th>
     <th>Actions</th>
    </tr>
  </db:header>

  <%-- the body gets rendered for each data row in the query
     it contains textfields and action buttons for manipulating data --%>

共10页 9 7 [1] [2] [3] [4] [5] [6] [7] [8] [9] [108 :>

Web DbForms(续一) 相关文章:
Web DbForms(续一) 相关软件:
特别声明:本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。
转载请注明来源:http://www.xgdown.com