<form name="findCOEO" id="findCOEO" method="post"
action="ep_edit_coeo.asp?timesin=1">
<table width=300 border=0 cellspacing=15 cellpadding=3>
<tr bgcolor="#990000">
<th colspan=2>
Edit/View COEO Data
</th>
</tr>
<tr>
<td>
<b>Enter COEO #</b>
</td>
<td>
<input type=text name=coeo id=coeo size=12 maxlength=12>
</td>
</tr>
<tr>
<td align=center colspan=2>
<input type=submit name=getcoeo id=getcoeo value="Get
Data"> <input type=reset name=reset1 id=reset1 value="Reset">
</td>
</table>
</form>
I read the form data in the action page as request.form("coeo"). On my
browser, IE6 this works exactly as planned. My coworker using the same
browser gets nothing returned from the field. Is there a configuration
setting that controls this? I have been doing this for many years and have
never had this issue before. Thanks for any help or direction you can give
me.
> Hopefully this is the correct group to ask this question. I have a 1
> field form:
Wrong NG.
This NG is about Cassic ASP serverside programming.
Forms are clientside.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Best,
Neil
I might be wrong, but this:
<input type=text name=coeo id=coeo size=12 maxlength=12>
should be
<input type="text" name="coeo" id="coeo" size="12" maxlength="12">
Dooza
>I might be wrong, but this:
><input type=text name=coeo id=coeo size=12 maxlength=12>
>should be
><input type="text" name="coeo" id="coeo" size="12" maxlength="12">
Strictly speaking, yes you should use quotation marks for all the
attribute values. If you ran the page through the W3C validator, it
would pretty surely fail without them (depending on your DOCTYPE, if
you had one, I think).
But browsers are built to be *very* tolerant of HTML coding miscues,
and no browser should have trouble figuring this out.
--
Tim Slattery
Slatt...@bls.gov
http://members.cox.net/slatteryt
Maybe if the DOCTYPE is set to strict this might be an issue? Might be
worth trying out? Just in case? If it doesn't, at least the code has
been cleaned up a bit.
Dooza