Printing Values without the Response.Write Statement
Written by Eric Smith, Northstar Computer Systems LLC
If you are embedding HTML in your ASP page, you can print variables and expressions without having to use the Response.Write statement. Here's an example:
- <% = rsData("UserID") %>
This will print out the value of the UserID field of the rsData recordset immediately following the LI tag. The only restriction is that you can't stretch the delimiters over more than one line.
Keywords: [
Uncategorized ASP Tips
]
Publication Date: 10/1/1999
|