Ok. I have 2 textboxes and one hidden field in my form. I need to concatenate all of those into one hidden field to be submitted as one string to my script. This is the code that I have now. Can I please get some help?

VB Code:
  1. <%
  2.     Dim myVar, Account, Date1, Amount
  3.    
  4.    
  5.     myVar =  Request.Form("Account") & Request.Form("Date1") & Request.Form("Amount")
  6. %>
  7.  
  8.     <INPUT TYPE="hidden" ID=TopicItemNamePrefix NAME=TopicItemNamePrefix VALUE="<%=myVar%>">

What is the problem here??