Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with a form

Status
Not open for further replies.

snowfishin

Programmer
May 8, 2003
3
US
I don't think it is the actual form that is causing the problem I think it is the computer.

Everytime I post to this form on this computer it always sends the same value in just one of the fields. Seven of the eight fields post correctly but, this one is always the exact same value? The form works fine on other computers. Any help or suggestions would be greatly appreciated.

Thanks
 
What is the exact link to the form in question? What is the field that doesnt change?
 
There is no value assigned to the field. Even when I enter a different value into the field it still comes up with this other value.
 
"Everytime I post to this form on this computer..."

Which form? which computer?

Give us a URL (preferably) or an excerpt of the HTML. Tell us about the computer that isn't working (PC or Mac? Windows/Linux? Browser?) and we might be able to help. Otherwise there isn't enough information to go on.

Try changing that bit of HTML to that value...

-- Chris Hunt
 
Toshiba Satellite
Windows 98 SE
Internet Explorer 6

customernumber is the field with problem


<HTML>
<HEAD>
<TITLE> Lookup Form</TITLE>
<META NAME=&quot;ROBOTS&quot; CONTENT=&quot;NOINDEX, NOFOLLOW&quot;>
<link REL=&quot;stylesheet&quot; TYPE=&quot;text/css&quot; HREF=&quot;/location.css&quot;>
</HEAD>
<BODY BGCOLOR=&quot;#FFFFFF&quot;>
<FORM ACTION=&quot;/find.htm&quot; METHOD=&quot;POST&quot;>
<CENTER>

<B><FONT SIZE=&quot;+2&quot; FACE=&quot;tahoma&quot; COLOR=&quot;#4863A0&quot;>Find Customer By:</FONT></B>
<BR>
<BR>



<TABLE BORDER=&quot;0&quot; CELLPADDING=&quot;2&quot;>

<TR>
<TH WIDTH=&quot;90&quot; ALIGN=&quot;right&quot;><FONT FACE=&quot;tahoma&quot; COLOR=&quot;#4863A0&quot; SIZE=&quot;-1&quot;>Name:</FONT></TH>
<TD><INPUT TYPE=&quot;text&quot; NAME=&quot;name&quot; SIZE=&quot;20&quot; MAXLENGTH=&quot;45&quot;></TD>
</TR>

<TR>
<TH WIDTH=&quot;90&quot; ALIGN=&quot;right&quot;><FONT FACE=&quot;tahoma&quot; COLOR=&quot;#4863A0&quot; SIZE=&quot;-1&quot;>Contact:</FONT></TH>
<TD><INPUT TYPE=&quot;text&quot; NAME=&quot;contact&quot; SIZE=&quot;20&quot; MAXLENGTH=&quot;75&quot;></TD>
</TR>

<TR>
<TH WIDTH=&quot;90&quot; ALIGN=&quot;right&quot;><FONT FACE=&quot;tahoma&quot; COLOR=&quot;#4863A0&quot; SIZE=&quot;-1&quot;>Invoice Number:</FONT></TH>
<TD><INPUT TYPE=&quot;text&quot; NAME=&quot;invoice&quot; SIZE=&quot;20&quot; MAXLENGTH=&quot;75&quot;></TD>
</TR>

<TR>
<TH WIDTH=&quot;90&quot; ALIGN=&quot;right&quot;><FONT FACE=&quot;tahoma&quot; COLOR=&quot;#4863A0&quot; SIZE=&quot;-1&quot;>Customer Number:</FONT></TH>
<TD><INPUT TYPE=&quot;text&quot; NAME=&quot;customernumber&quot; SIZE=&quot;20&quot; MAXLENGTH=&quot;75&quot;></TD>
</TR>

<TR>
<TH WIDTH=&quot;90&quot; ALIGN=&quot;right&quot;><FONT FACE=&quot;tahoma&quot; COLOR=&quot;#4863A0&quot; SIZE=&quot;-1&quot;>Property Number:</FONT></TH>
<TD><INPUT TYPE=&quot;text&quot; NAME=&quot;propertynumber&quot; SIZE=&quot;20&quot; MAXLENGTH=&quot;75&quot;></TD>
</TR>

<TR>
<TH WIDTH=&quot;90&quot; ALIGN=&quot;right&quot;><FONT FACE=&quot;tahoma&quot; COLOR=&quot;#4863A0&quot; SIZE=&quot;-1&quot;>E-Mail:</FONT></TH>
<TD><INPUT TYPE=&quot;text&quot; NAME=&quot;email&quot; SIZE=&quot;20&quot; MAXLENGTH=&quot;75&quot;></TD>
</TR>

<TR>
<TH ALIGN=&quot;right&quot;><FONT COLOR=&quot;#4863A0&quot; FACE=&quot;tahoma&quot; SIZE=&quot;-1&quot;>Telephone:</FONT></TH>
<TD><INPUT TYPE=&quot;text&quot; NAME=&quot;phone&quot; SIZE=&quot;20&quot; MAXLENGTH=&quot;20&quot;>
  </TD>
</TR>

<TR>
<TH ALIGN=&quot;right&quot;><FONT COLOR=&quot;#4863A0&quot; FACE=&quot;tahoma&quot; SIZE=&quot;-1&quot;>Zip Code:</FONT></TH>
<TD><INPUT TYPE=&quot;text&quot; NAME=&quot;zip&quot; SIZE=&quot;20&quot; MAXLENGTH=&quot;20&quot;>
  </TD>
</TR>

<tr><td colspan=2 align=&quot;center&quot;>
<input type=&quot;radio&quot; name=&quot;type&quot; value=&quot;all&quot; checked>: All
<input type=&quot;radio&quot; name=&quot;type&quot; value=&quot;active&quot;>: Active
<input type=&quot;radio&quot; name=&quot;type&quot; value=&quot;prospect&quot;>: Prospects
<input type=&quot;radio&quot; name=&quot;type&quot; value=&quot;x_active&quot;>: X-Active
</td></tr>

</TABLE>
<BR>
<INPUT TYPE=&quot;reset&quot; VALUE=&quot;Clear Form&quot;>
   
<INPUT TYPE=&quot;submit&quot; NAME=&quot;action&quot; VALUE=&quot;Search&quot;>
<BR><BR>
<B><BR><A HREF=&quot;&quot; CLASS=&quot;LinkBlue&quot; TARGET=&quot;_top&quot;>Back</A></B>
</CENTER>
</FORM>
</BODY>
</HTML>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top