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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -