Data always is saved twice

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Data always is saved twice

    Hello,
    I developed web application with ASP. It was running well in most computer.
    Only few computers have this problem that when people wants to save data,
    the data always was saved twice.

    Does anybody know where the problem comes from, coding or computer setting
    or Internet explorer setting?

    Thanks in advance,

    Wilton


    weidong yuan Guest

  2. Similar Questions and Discussions

    1. How is pdf saved??
      How do I determine how a pdf is saved when I am on the receiving end of that pdf? Standard, High Quality Print, Press quality, etc? Thanks!
    2. eps saved back from v9 to v8
      I have twice recently been sent an eps which I was assured had been saved back to Illustrator 8 - which is what I have. (Two different files from two...
    3. ViewSate is not saved
      I have written a custom control. Everything works fine until I place my control inside a repeater. When I do that the viewstate of my control is...
    4. where session ID is saved?
      Hi, I'm a first time user of sessions. The problem deals with data storing in sessions, and is shortly explained here:...
    5. Saved images
      I only have Dreamweaver on my computer so I had to download the 30-day trial of Fireworks for this class. After my trial period was over this last...
  3. #2

    Default Re: Data always is saved twice

    I suspect a coding problem...

    But, you could look in the IIS logfiles, and check to see whether the user
    is sending two requests to IIS in a row...

    Cheers
    Ken

    "weidong yuan" <wdyuan@telus.net> wrote in message
    news:uFBoUcsaEHA.2792@TK2MSFTNGP09.phx.gbl...
    : Hello,
    : I developed web application with ASP. It was running well in most
    computer.
    : Only few computers have this problem that when people wants to save data,
    : the data always was saved twice.
    :
    : Does anybody know where the problem comes from, coding or computer setting
    : or Internet explorer setting?
    :
    : Thanks in advance,
    :
    : Wilton
    :
    :


    Ken Schaefer Guest

  4. #3

    Default Re: Data always is saved twice

    What version of Internet Explorer. One of the 5.x versions had a double
    submit bug. If it is one of these, there are patches on Microsoft.

    You can also code a protective measure, which was the only solution prior to
    the bug fix. You have to check if the exact data has already been submitted
    prior to INSERT. It is relatively easy to check if ALL of the data is the
    same and avoid entering it.

    --
    Gregory A. Beamer
    MVP; MCP: +I, SE, SD, DBA

    ************************************************
    Think Outside the Box!
    ************************************************
    "weidong yuan" <wdyuan@telus.net> wrote in message
    news:uFBoUcsaEHA.2792@TK2MSFTNGP09.phx.gbl...
    > Hello,
    > I developed web application with ASP. It was running well in most
    computer.
    > Only few computers have this problem that when people wants to save data,
    > the data always was saved twice.
    >
    > Does anybody know where the problem comes from, coding or computer setting
    > or Internet explorer setting?
    >
    > Thanks in advance,
    >
    > Wilton
    >
    >

    Cowboy \(Gregory A. Beamer\) [MVP] 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