|
Gregory (Grisha) Trubetskoy
grisha at modpython.org
Sat Feb 28 09:08:14 EST 2004
On Sat, 28 Feb 2004, vincent delft wrote:
> <%
> for i in range(5):
> echo "<br>Hello"
> #end
> %>
but I'm not sure I understand how is it that much better than
<%
for i in range(5):
req.write("<br>Hello")
#end
%>
Grisha
|