about jsp and html
i ' am new to jsp , if i ask any stupid question , i'm soryy.....
if jsp code incude html,
many book code style like this...
<%
//do something
out.println("<html>test</html>")
%>
i try to code like asp , such like
<%
// do something...
%>
<html>test</html>
<%
continue...
%>
but in the second style, the page can't appear anything... does jsp can't write like the second style...

