Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Prevent Form Cache

    Hello~
    I am looking for a method to prevent form entry fields from being cached.
    I need to prevent the user from being able to click on a forms field and a
    drop down appearing which lets them choose from a previous entry.
    Any help greatly appreciated.
    Thanks in advance,
    Don


    Don - TFE, Inc Guest

  2. Similar Questions and Discussions

    1. Contact Form (php) - how to prevent new window
      My contact form works just fine, however, I currently have the target set to "_blank" which is not what I want. Rather than opening the .php file...
    2. Prevent Form to run from external site
      Hello! Can anyone please tell me how can I do to prevent a Form to run from external site? I need that it just run in my site, like...
    3. How can I prevent MP3s to end up in the cache file in the user's pc?
      Hi all. I stream MP3s (demo work) from my website. I would like them not to end up in the user's Temporary Files folder. Is there any way to...
    4. Dupe Prevent on Form Submit
      I have an html form, that has fields and when the submit button is pressed, the information is transferred to a php file. Which then inserts the...
    5. prevent form submit ...
      I have a web form with multiple part. I do want the user to click the submit button to post back, so I know which functionality was triggered. ...
  3. #2

    Default Re: Prevent Form Cache

    Try this:

    <form>
    <INPUT TYPE="password" AUTOCOMPLETE="off">
    </form>

    I haven't used it, but I think it works. You might wanna try putting the autocomplete directive in the form tag.
    Rexervoir_dog Guest

  4. #3

    Default Re: Prevent Form Cache

    Thanks, that does the trick!
    Don - TFE, Inc Guest

  5. #4

    Default Re: Prevent Form Cache

    ..oO(Don - TFE, Inc)
    > I am looking for a method to prevent form entry fields from being cached.
    Impossible. It's a browser setting.

    Micha
    Michael Fesser Guest

  6. #5

    Default Re: Prevent Form Cache

    ..oO(Rexervoir_dog)
    >Try this:
    >
    ><form>
    > <INPUT TYPE="password" AUTOCOMPLETE="off">
    ></form>
    Invalid code.

    Micha
    Michael Fesser Guest

  7. #6

    Default Re: Prevent Form Cache

    Michael, it does work.
    I put a demo up here:
    [url]http://www.toolsforeducation.com/tfe/VzB/autocomplete_field_demo.html[/url]
    Don - TFE, Inc Guest

  8. #7

    Default Re: Prevent Form Cache

    ..oO(Don - TFE, Inc)
    >Michael, it does work.
    It _may_ work. It's invalid code, the 'autocomplete' attribute is not
    part of any web standard.

    Micha
    Michael Fesser Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139