R
Rod Haggard
Hopefully this is the correct group to ask this question. I have a 1 field
form:
<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.
form:
<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.