显示标签 jsp 标签

发布于 2024-07-25 09:57:03 字数 436 浏览 5 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一绘本一梦想 2024-08-01 09:57:03

你可以使用table标签的name属性(通常是这样的:)

<display:table name="crc" ...>
</display:table>

来使用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:)

<display:table name="crc" ...>
</display:table>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文