Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

simple question - syntax for response.write dim variable 1

Status
Not open for further replies.

ringadeal

Technical User
Jan 16, 2008
67
US
What is the syntax to output the value of a dim variable onto a webpage. For example:
Code:
dim memo
memo=(products.Fields.Item("CustomMemo01").Value)
How do I code the following?:
Code:
response.write(memo)
 
I would like to clarify the above submission.

How do I display the value of the variable named "memo" on the actual html portion of the page, what is the syntax?
 
Did you try
Code:
<%response.write(memo)%>

___________________________________________________________
If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
Steam Engine Prints
 
this works so this issue is resolved, thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top