windows 2000 autocomplete in text field
Moderator: General Moderators
- pelegk2
- Forum Regular
- Posts: 633
- Joined: Thu Nov 27, 2003 5:02 am
- Location: Israel - the best place to live in after heaven
- Contact:
windows 2000 autocomplete in text field
i have 2 text boxes :
1 for user name
1 for password (and defined for it)
when i type the user name it autocompletes the password!
how can i control it?when to autocompleteand when not?
thanks in advance
peleg
1 for user name
1 for password (and defined for it)
when i type the user name it autocompletes the password!
how can i control it?when to autocompleteand when not?
thanks in advance
peleg
- pelegk2
- Forum Regular
- Posts: 633
- Joined: Thu Nov 27, 2003 5:02 am
- Location: Israel - the best place to live in after heaven
- Contact:
but i want to do it using code!
i can go around the world and do as instructed
:):):):)
or maybe some 1 wants to buy me tickes for that
or maybe some 1 wants to buy me tickes for that
- pelegk2
- Forum Regular
- Posts: 633
- Joined: Thu Nov 27, 2003 5:02 am
- Location: Israel - the best place to live in after heaven
- Contact:
noooooooooooooooooooooooo!!!!
beacuse i want to do it with code!
is it possible>!>!?!>!>!>?!>!?!?!
is it possible>!>!?!>!>!>?!>!?!?!
-
microthick
- Forum Regular
- Posts: 543
- Joined: Wed Sep 24, 2003 2:15 pm
- Location: Vancouver, BC
-
microthick
- Forum Regular
- Posts: 543
- Joined: Wed Sep 24, 2003 2:15 pm
- Location: Vancouver, BC
For problem #1, look here:
http://msdn.microsoft.com/library/defau ... /acoff.asp
You can turn off a form field's autocomplete ability by using the attribute autocomplete:
<form method=post action="something.php" autocomplete="off">
Or
<input type="text" name="creditcard" value="" size="16" maxlength="16" autocomplete="off">
Or using JavaScript. See link for code.
http://msdn.microsoft.com/library/defau ... /acoff.asp
You can turn off a form field's autocomplete ability by using the attribute autocomplete:
<form method=post action="something.php" autocomplete="off">
Or
<input type="text" name="creditcard" value="" size="16" maxlength="16" autocomplete="off">
Or using JavaScript. See link for code.