“Autocomplete off” not working in IE - ASP.Net

前端 未结 4 1402
野趣味
野趣味 2020-12-16 06:52

Question: Is there any reason Autocomplete=off on a ASP:Textbox would not be working in IE 7?

In case this is the best term for it, the IE Autocomplete feature is th

相关标签:
4条回答
  • 2020-12-16 07:08

    Try this one:

    someTextbox.Attributes.Add("autocomplete", "off");
    
    0 讨论(0)
  • 2020-12-16 07:17

    Try adding AUTOCOMPLETE="off" to your form tag too:

    <form name="form1" id="form1" method="post" autocomplete="off">
    
    0 讨论(0)
  • 2020-12-16 07:22

    in Page Load

    txtusername.AutoCompleteType = AutoCompleteType.Disabled;
    
    0 讨论(0)
  • 2020-12-16 07:24

    Trying to clear out my unanswered questions that I've answered in the original post.

    test.AutoCompleteType = AutoCompleteType.None;
    
    0 讨论(0)
提交回复
热议问题