I've got an ASP form that collects input from the user and then passes it to another page that uses it as criteria for a query that looks up and displays information.
Everything is working, but now I'd like to add a default value to a couple of the text boxes.
For example, a customer may have hundreds of locations, but the master account information is stored in location 0 for a given customer account number.
I've got a text box that accepts an account number and another that accepts a location number. I'd like to set the default location number to 0.
Here's what I have for the text box HTML:
<INPUT id=Loc_No style="WIDTH: 75px; HEIGHT: 22px" maxLength=5 size=10 name=Loc_No value="<%=Loc_No%>" >
How do I set a default value? _________
Rott Paws
Everything is working, but now I'd like to add a default value to a couple of the text boxes.
For example, a customer may have hundreds of locations, but the master account information is stored in location 0 for a given customer account number.
I've got a text box that accepts an account number and another that accepts a location number. I'd like to set the default location number to 0.
Here's what I have for the text box HTML:
<INPUT id=Loc_No style="WIDTH: 75px; HEIGHT: 22px" maxLength=5 size=10 name=Loc_No value="<%=Loc_No%>" >
How do I set a default value? _________
Rott Paws