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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hide text boxes

Status
Not open for further replies.

stan8450

Programmer
May 3, 2002
16
CA
In vbscript, I want to hide text boxes on load. On the page there is 2 forms, 1 is a calculator and the other is a mail form. The claculator passes values to 4 text boxes in the mail form. I don't want the user to see the info passed to the mail text boxes, I just want info passed in the mail through t the text boxes.


thanx
 
Why don't you make those 4 textboxes "hidden" textboxes. That way, you can pass the information into them, but they will not be visible to the user.
 
how do I go about doing that. I inserted the boxes in dreamweaver and there is no "hide "option.


thanx for your quick response
 
Sorry about my slow response here. You have probably already figured this one out. I apologize.

<input type=&quot;hidden&quot; name=&quot;name1&quot; value=&quot;&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top