Results 1 to 1 of 1
-
07-09-2010, 02:19 PM #1
- Join Date
- Apr 2008
- Location
- Boston, USA
- Posts
- 13,172
- Thanks
- 744
- Thanked 699 Times in 550 Posts
- Blog Entries
- 4
- Feedback Score
- 4 (100%)
How to Turn Off / Disable Autocomplete - ASP .Net
How to Turn Off / Disable AutoComplete - ASP .Net
Many browsers support autocomplete feature, making our life easier. With this feature, browser remembers the input values we make on certain fields e.g. text field and when we go visit the webpage later on, browser make suggestions with those past values we have entered.
Sometimes this is not a desirable feature. Lets say you are on a shared computer and using your credit card to make a purchase. You sure don't want the computer remember your credit card info.
So how you can turn off or disable autocomplete on a entire web page in asp .net?
Very simple.
So how you can turn off or disable autocomplete on a textbox in asp .net?Code:<form id="Form1" method="post" runat="server" autocomplete="off">
Note that intellisense might not detect autocomplete listed. However it would work just fine if you put that on.Code:<asp:TextBox Runat="server" ID="Textbox1" autocomplete="off"></asp:TextBox>
Free Classified Ads & BUSINESS/PROFESSIONAL SOCIAL NETWORK
Similar Threads
-
CheckBox WordWrap Disable - ASP .NET
By manik in forum ASPReplies: 1Last Post: 07-28-2010, 08:15 PM -
How do i disable rewrite from https to http
By seoladder in forum PHPReplies: 1Last Post: 05-15-2010, 04:01 PM -
Which is the best way for fast turn around?
By Zameer Mick in forum Search Engine OptimizationReplies: 8Last Post: 06-29-2009, 01:27 AM -
possible to disable ads
By himoacs in forum Pay Per Click AdvertisingReplies: 4Last Post: 07-05-2008, 09:37 AM -
Turn what you like into money.
By wujijiangjun in forum General MarketingReplies: 2Last Post: 07-04-2008, 07:36 PM


Reply With Quote

