
March 21st, 2002, 04:43 PM
|
|
Junior Member
|
|
Join Date: Feb 2002
Location: Salford, UK
Posts: 0
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
You can do it both ways using XML tags or "scriptlet"
<jsp:forward page="x.jsp"/>
or
<%pageContext.forward("x.jsp");%>
It depends on what you prefer. The idea of mixing XML tags and HTML tags is a nice idea but sometimes xml tags can require too much typing so I resort back to scriptlets. Coldfusion has the same ambiguity with CF tags and putting scripts in <CFSCRIPT>, though cfscript is a small subset of the Coldfusion tags.
|