Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Very Urgent

    Dear All

    i have a form by which user can enter, modify,delete data
    corrosponding to employees.Problem is whenever user modify
    data it updates data into database but form shows previous
    data whenever i load it again. It shows new data only when
    i close the IE and reopen it.

    Can anybody tell me why this is happening.


    Warm Regards
    Archna
    Archna Guest

  2. Similar Questions and Discussions

    1. Need urgent help on this one please
      on an FMS supported server, how much of monthly transfer Bandiwidth will i Need to stream about 100 hours of high quality (800 kbps) video to 100...
    2. URGENT
      hiii In my web application For Selecting a Date i called a another POP UP Window From where User selects date and Data is posted back on...
    3. HELP URGENT!!
      Hello, Is it possible for me to put an open browser window link on an HTML-enabled dynamic textfield in flash MX 2004? If it is, can anybody...
    4. please help-urgent~
      I am wrote a java class and have placed in %system%/java/trustlib and I have using getObject to instant that class however, i found a serious...
    5. Urgent Help!
      Guys please help me on this one. I'm doing my school yearbook on my computer, basically on html. I have a pop up menu that has to be destined to a...
  3. #2

    Default Re: Very Urgent

    Check so that a rebind is done on to the data. I assume your are using a
    datagrid or something like that. It could be that the data you have in the
    grid is only loaded when there is not a postback.

    /Cristian

    "Archna" <sehgalarchna@hotmail.com> wrote in message
    news:049401c35a6b$8ff11d90$a501280a@phx.gbl...
    > Dear All
    >
    > i have a form by which user can enter, modify,delete data
    > corrosponding to employees.Problem is whenever user modify
    > data it updates data into database but form shows previous
    > data whenever i load it again. It shows new data only when
    > i close the IE and reopen it.
    >
    > Can anybody tell me why this is happening.
    >
    >
    > Warm Regards
    > Archna

    Cristian Suazo Guest

  4. #3

    Default Re: Very Urgent

    Also, the page is cached probably at the local machine, so the browser
    realizes it has been here before and doesn't even check to see if there is a
    new page, and displays the caches version.

    <meta http-equiv="expires" content="Sun, Dec 31 1970 12:00:00 GMT" />
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="pragma" content="no-cache" />

    Try putting that in the <head> section of your page that isn't refreshing.

    bill

    "Archna" <sehgalarchna@hotmail.com> wrote in message
    news:049401c35a6b$8ff11d90$a501280a@phx.gbl...
    > Dear All
    >
    > i have a form by which user can enter, modify,delete data
    > corrosponding to employees.Problem is whenever user modify
    > data it updates data into database but form shows previous
    > data whenever i load it again. It shows new data only when
    > i close the IE and reopen it.
    >
    > Can anybody tell me why this is happening.
    >
    >
    > Warm Regards
    > Archna

    William F. Robertson, Jr. 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