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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

txt box error

Status
Not open for further replies.

BobBob10

Programmer
Apr 24, 2005
57
GB
I have a standard text box with no style attached.

However, when my page loads this text box turns yellow. This is because of the text in the td next to the control. If this TD reads Email then the control turns yellow!!!

Any ideas how to stop this?
 
BobBob10: sound like you might be missing an end statement. Can you paste your code around the textbox? This should be a quick fix.
 

code as follows

Code:
<TR>
								<TD style="WIDTH: 177px" noWrap align="right">
									EMail Address</TD>
								<TD noWrap width="200"><asp:textbox id="txtMail" runat="server" Width="184px"></asp:textbox></TD>
</TR>

Thanks
 
Bob: Its not evident how the background of your asp:Textbox could be picking up a color, evidently the problem must be in the row prior to this one. Go ahead (if its not several pages long) and paste in your code for the table down to the above row. We should be able to see it at that point.
 
Bob, just a minor point, you havent got a google toolbar installed thats making the auto fill fields yellow have you?

K
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top