TextBox backgrounds yellow (some of them)

G

Guest

I'm developing Web Applications with C# code behind. I have found that,
because of the particular nuances of my company, I am stuck with positioning
the items on the page with tables. No problem with that though.

The problem is that some of the controls on the screen are displayed with
yellow backgrounds and I can't figure out how to change that to white (as the
others are). Nothing I do seems to make a difference.

Could someone give me a hint as to what might be happening?
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,

IIRC you cannot control that with code, it's some setting in windows,
google for it as I had the same problem a time ago and was able to solve it
from the google suggestion
 
G

Guest

Sounds like it could be a CSS issue. Best way to find it is to view the html
source of the returned web page then analyze all CSS data:

style="" attributes (inline css)
<style> tags (inline css)
<style> tags with @@import (external css files)
<link type="text/css"> tags (external css files)
 
B

Ben Dewey

do you have a css for your site? look on your source code in the head
section <link rel...

if so, check to see if there is stylesheet for the textbox.

If not, please explain in furtur detail what you have tried. and supply a
sample.
 
G

Guest

That was precisely it! Thank you.
--
----------------------------------------
Magic is not in the hands of the magician but in the mind of the audience.

Animadverto est verus




I think thats yahoo or google autofill, isn't it?
 
M

MuZZy

Rik said:
I'm developing Web Applications with C# code behind. I have found that,
because of the particular nuances of my company, I am stuck with positioning
the items on the page with tables. No problem with that though.

The problem is that some of the controls on the screen are displayed with
yellow backgrounds and I can't figure out how to change that to white (as the
others are). Nothing I do seems to make a difference.

Could someone give me a hint as to what might be happening?
Ha-ha-ha, i had the same problem and spent 2 days over it until i found
that yahoo's form autofill is turned on...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top