asp classic - Response.write multi line html for ASP? -
i have asp page displays online form after validating user. i'm using response.write "form goes here"
however, form long (100+ lines).
is there way can response.write multi-line html? want this:
<% if rs.rcount > 0 response.write " <form> <input type="text" id="inputemail"> </form>" end if %>
many thanks,
use code block, not response.write
.
<% ...your vb .... if a=b %> <h1> html goes here</h1> <form> <input type="text" id="inputemail"> </form> <% end if ... more vb code %>
Comments
Post a Comment