显示标签 jsp 标签
我正在使用 diaply 标签库来显示我的表格。但我不能使用 <% %> tagt 在那里。如果我尝试使用它,它会给我错误。但我可以在那里使用标签。 如果我尝试在 jsp 中使用以下代码,则会出现错误,表示应该有一个匹配的结束标记。 我在这里遵循了jsp中的java代码
List<Course> = (List<Course>)request.getAattribute("crc");
课程是一个类/bean。
谁能建议我这样的库,我可以使用 struts 进行自动分页,在表格中显示列表,以及显示标签提供的其他功能。我想使用 struts,我希望视图看起来不错,但易于开发。我想用Little Workr实现高级用户界面来显示O/P/视图吗?
任何人都可以提供使用struts显示标签的示例
i am using diaply tags library for displaying my tables.But i cant use the <% %>
tagst there.If i try to us it it gives me error.but i can use tag there.
If i try to use followin code in my jsp it give an error sayin shoul hav a matcheing ending tag.
i have follown java code in jsp
List<Course> = (List<Course>)request.getAattribute("crc");
here Course is a class/bean.
can anyone suggest me such library that i can use with struts for auto paging,displaying list in tables,and with other features provided by display tag.I want to use struts and i want the view to look good and yet easy to devlop.that is i want to achieve high class userinterface with littel effortr toward displaying o/p / view.
can anyone provide the example of disploay tag with struts
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用table标签的name属性(通常是这样的:)
来使用crc List作为Javabeans的基础来显示。
请参阅http://displaytag.sourceforge.net/1.2/displaytag /tagreference.html#display-el:table 了解有关表格标签的更多信息。
You can use the name attribute of the table tag (normally like this:)
To use the crc List as the basis of Javabeans to display.
See http://displaytag.sourceforge.net/1.2/displaytag/tagreference.html#display-el:table for more information about the table tag.