Hi !

I have a feature request to PSP.

See the example:

<%
res.write("This is a test and works.")
%>

<html>
 <tr>
  <td>
   <%
    res.write("This block will not work.")
   %>
  </td>
 </tr>
</html>

The code above dont work, to make it work i had to do:

<html>
 <tr>
  <td>
<%
res.write("This block will not work.")
%>
  </td>
 </tr>
</html>

This works... But, isn't there a way to make the nš 01 code work ? This will 
be more legible and will make the output of the PSP script follow the entire 
html identation.

Thanks !

-- 
Douglas Soares de Andrade - UnilesteMG
dsa em unilestemg.br - Linux User: #237615
http://douglasandrade.tk



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to