|
Posted by Mara Guida on 12/11/05 02:48
Vic Spainhower wrote:
> >The form buttons have been working all the time, with 134 records or 248!
> >The form would be submitted -- that's what the buttons are for.
>
> Mara,
>
> The problem that I originally stated was "is there a memory limit for HTML
> pages?"
No, for pratical purposes, there isn't.
So your problem must be something else.
> The form buttons did stop working when I added a dropdown menu to
> the table (which was part of the form).
No, they didn't -- and that's my point!
If the buttons had stopped working, changing the method from POST to
GET wouldn't accomplish anything.
> Why do you say they were not working
> Mara?
See above.
> I press the submit button and nothing happens!
Nothing?
The address in the address bar doesn't get crowded?
The server log doesn't show a new request at the time you pressed the
button?
Doesn't the browser get a new page (with the same content)?
> That to me is not working.
The way I read your problem it seemed something like
This works
<form action="whatever">
<input type="submit">
</form>
When I add a select it wil not work
<form action="whatever">
<select>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
<!-- This is just an example -->
<!-- I'm sure adding a select does not change the input type
-->
<input type="button" value="Submit Query">
</form>
<snip>
[Back to original message]
|