浏览 3507 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-09-28
数据库表设计: drop table if exists sbook; create table if not exists sbook ( id int primary key auto_increment, title varchar(50), author varchar(20), total int, price float, isbn varchar(20), publisher varchar(50) ); 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2008-09-29
例子有问题 添加校验ISBN那里 郁闷
|
|
返回顶楼 | |
发表时间:2008-12-18
<a href="<%=request.getContextPath()%>/sbook/modifySBook.action?bookId=${id}"><s:text name="book.modifyBookMsg"/></a> <a href="<%=request.getContextPath()%>/sbook/removeSBook.action?bookId=${id}"><s:text name="book.removeBook"/></a> 为什么 我的 ${id}死活得不到值,在页面上显示的源代码也是这个${id} |
|
返回顶楼 | |