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

plot - Remove Objects from Legend When You Have Also Used Fit, Matlab -

java - Why does my date parsing return a weird date? -

Need help in packaging app using TideSDK on Windows -