我使用select * from dbo.table1;
select * from dbo.table2 where city = 'Chicago';
create dbo.table3(id int, name varchar(50);
insert into dbo.table3(1,'a');
select * from dbo.table3;
方法获取记录列表。之后,我在jsp上使用request.getAttribute()
循环显示此列表。但每个记录(博客)都有“删除”,“编辑”等功能。为此,我真的需要生成包含blog的id的路径的链接。这就是我需要动态链接的原因。但我无法生成它。怎么做?以下是我的代码的一部分:
for
答案 0 :(得分:1)
<a href="/delete?id=<%= blog.getId()%>">
假设Blog
有getId()
方法。
更合适的是,你应该考虑使用jstl <c:forEach>
和el。
http://www.java2s.com/Tutorial/Java/0380__JSTL/UseForEachtoLoopThroughArrayList.htm