在Java/JSP的精彩世界中,您可以使用这种形式的注释:
<%-- anything in here is ignored and does not get sent to the client
it can span multiple lines and is useful for commenting out blocks
of JSP, including tags and HTML:
<c:if test="${some.condition}">
<p>All this is inside t
我试图在jsp页面中显示一个属性:
<s:property value="News"/>
我想在新闻里放些文字和链接
在jsp页面中,它只显示标签而没有“编译它”。
我试过了
This is a news follow the <s:a href="http://www.google.it">link</s:a>
和
This is a news follow the <a href="http://www.google.it">link</a>
这是怎么做到的?
我正在使用Struts1框架,我有一个关于logic:iterate标签的问题。
我有一个集合对象,它存储字符串对象的列表,即Collection(List(String)) c = new ArraList(List(String))()
我正在设置要在jsp中使用的request作用域上的集合对象。
有人能指导我如何使用logic:iterate标签吗?