help with form

P

Pam

I've got a form on this link - www.mfqha.com/shows.htm and the spot where
I have Home Page info - is not long enough - I mean - its long enough at
first glance, but when one tries to type in a web site URL - it only takes
so many characters - I've set it at different lengths, but it only goes so
far - how do I make it so that it will accept as many characters as typed?

thanks
Pam
 
T

Thomas A. Rowe

Right click on the form field, then field validation and remove the limit of
25 character or switch to HTML/Code view and change the following line:

<INPUT NAME="HomePage" SIZE=50 MAXLENGTH=25> </b>

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
D

David Berry

Switch to HTML View and get rid of MAXLENGTH=25. When you put MaxLength on
a form field that's the most it will ever take.
 
Top