TextBox shows as ListBox on clients PC

  • Thread starter Thread starter Kav
  • Start date Start date
K

Kav

As the title states, on my development PC there is a textbox which allways
displays as a textbox. However on the clients PC it is showing previous
entries he has made to the TextBox as a ListBox.

Now this sounds to me like an Internet Explorer setting needs changing but
then I thought how do you go about making sure a TextBox allways displays as
a Textbox regardless of the users IE settings?

For example you wouldn't want a login textbox to display a list of previous
user ids that had logged in on a particular PC.

Thanks
Rich.
 
AFAIK, what you are saying is not possible in the HTML specification.
It sounds like the "Listbox" you are talking about it IE functionality
for remembering form values making it appear that the control is a
listbox. To check... Does the list appear when the user starts
typing only, or is there a drop-down arrow at the side of the control?
 
Hi,

Weird, and it has nothing to do with IE settings, post the code in question
both the aspx as the .cs , most probably you are creating a dynamic control.
or you have some script in the page.

cheers,
 
Marc Jennings said:
AFAIK, what you are saying is not possible in the HTML specification.
It sounds like the "Listbox" you are talking about it IE functionality
for remembering form values making it appear that the control is a
listbox. To check... Does the list appear when the user starts
typing only, or is there a drop-down arrow at the side of the control?

It appears when he starts typing so it looks like it's the IE functionality
causing the problem.

Thinking about it this makes sense as the forms I use online on my pc
remember user ids unless I say not to. I'll tell him to switch it off.

Thanks for your advice.
Rich.
 
Hi,

Humm, there is some features like that in IE, now I do NOT remember it in a
listbox, only in textboxes.
Maybe he has some spyware/utility installed that has some kind of
autocomplete feature


cheers,
 
Back
Top