when I append jquery datepicker to my asp textbox, by clicking on it, my browser auto shows the history of the dates i typed in a dropdownlist. Can I prevent this?

Set textbox to readonly isn't a good idea because asp.net doesn't read the values from read only fields in code behind.

any other ideas?

thank you and best regards.

marc

link|improve this question

feedback

1 Answer

if the field is inside a form add

autocomplete="off"

to the form. For example:

<form action=".." method="post" autocomplete="off">

This should prevent the autocomplete function to be activated on the fields inside the form. I don't know if it works on every browser.

link|improve this answer
thank you but it's asp.net and the whole site is into the form tag. I just want to do that on the specific page. – snarebold Dec 23 '09 at 15:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.