Hi,
I have a form with 5 entry fields in it.
The fields are search criteria for a little internal telephone database I want to make available over our intranet.
How do I display the form so that the input text fields all
line up vertically next to the prompt text?
For Example, assume the '.' symbols represent a text entry box.
Forename ....................
Surname ....................
Department ....................
Location ....................
In reality I get something like this with each input text field occurring immediatly after the text prompt:-
<FORM ACTION="SearchResults.asp" METHOD=POST>
Surname<INPUT TYPE = "TEXT" NAME = "Surname"><BR>
Forename<INPUT TYPE = "TEXT" NAME = "Forename"<BR>
Department<INPUT TYPE = "TEXT" NAME = "Department"<BR>
Location<INPUT TYPE = "TEXT" NAME = "Location"<BR>
<INPUT TYPE = "SUBMIT" VALUE = "Login">
<INPUT TYPE="RESET">
</FORM>
Forename...................
Surname...................
Department...................
Location..................
I've tried putting ' ' characters as padding, and I've tried putting the prompts in a one table column and the form entry fields in another table column but niether works.
I have a form with 5 entry fields in it.
The fields are search criteria for a little internal telephone database I want to make available over our intranet.
How do I display the form so that the input text fields all
line up vertically next to the prompt text?
For Example, assume the '.' symbols represent a text entry box.
Forename ....................
Surname ....................
Department ....................
Location ....................
In reality I get something like this with each input text field occurring immediatly after the text prompt:-
<FORM ACTION="SearchResults.asp" METHOD=POST>
Surname<INPUT TYPE = "TEXT" NAME = "Surname"><BR>
Forename<INPUT TYPE = "TEXT" NAME = "Forename"<BR>
Department<INPUT TYPE = "TEXT" NAME = "Department"<BR>
Location<INPUT TYPE = "TEXT" NAME = "Location"<BR>
<INPUT TYPE = "SUBMIT" VALUE = "Login">
<INPUT TYPE="RESET">
</FORM>
Forename...................
Surname...................
Department...................
Location..................
I've tried putting ' ' characters as padding, and I've tried putting the prompts in a one table column and the form entry fields in another table column but niether works.