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:
<% Dim myVar, Account, Date1, Amount myVar = Request.Form("Account") & Request.Form("Date1") & Request.Form("Amount") %> <INPUT TYPE="hidden" ID=TopicItemNamePrefix NAME=TopicItemNamePrefix VALUE="<%=myVar%>">
What is the problem here??




Reply With Quote