IE 5.0 make me crazy...

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

  1. #1

    Default IE 5.0 make me crazy...

    Hi,

    I have an aspx page with a Graph (teechart) and a button (export).
    The page is automatically updated by <META HTTP-EQUIV="Refresh"
    content='20;url='>

    When I click on the Export button, I execute the following code :

    this.WebChart1.Chart.Export.Data.Excel.Save(@"c:\I netpub\ftproot\" +
    this.Session.SessionID.ToString() + ".xls");

    this.Response.ContentType = "'application/octet-stream'";
    this.Response.AddHeader("Content-Disposition", "attachment;
    filename=Fichier_vent.xls");
    // Envoi le fichier au Navigateur
    this.Response.WriteFile (@"c:\Inetpub\ftproot\" +
    this.Session.SessionID.ToString() + ".xls");
    this.Response.End();

    This generate a downloading dialogbox in order to download the file
    generated by the server.

    With IE6 no problem, the page is still refresh, every 20 seconds.

    With IE5, it stop to be refreshed after I click on the export button ...

    What can I do ?

    Thanks for your help.


    H. MAILLARD


    Herve MAILLARD Guest

  2. Similar Questions and Discussions

    1. crazy server
      I am getting this err.Note:sometimes the same insert statement works fine.. Error Executing Database Query. ORA-01843: not a valid month The...
    2. crazy
      guys: this is a highly simplified version of the helloVid app from the oreilly book: in the fla: stop(); myID = ""; nc = new...
    3. Crazy Problem - Please Help
      For some reason, after re-installing Acrobat 5 on two different workstations, the tab key behavior is backwards. When either user hits the TAB...
    4. Crazy PNG files...
      I have a Publisher file that was created with Publisher 2000. It is a website and contains a variety of text files and pictures. When I loaded it...
    5. I think i am going crazy
      i have made a file called blah.php containing <?php print "<b>this is a test " ?> i open the page in a browser and i see a blank page i...
  3. #2

    Default Re: IE 5.0 make me crazy...

    You could try using a client side javascript timer instead.
    [url]http://www.crows.co.uk/Javascript/timer.htm[/url]

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "Herve MAILLARD" <rvmaillard@free.fr> wrote in message
    news:3f1e6f07$0$16702$626a54ce@news.free.fr...
    > Hi,
    >
    > I have an aspx page with a Graph (teechart) and a button (export).
    > The page is automatically updated by <META HTTP-EQUIV="Refresh"
    > content='20;url='>
    >
    > When I click on the Export button, I execute the following code :
    >
    > this.WebChart1.Chart.Export.Data.Excel.Save(@"c:\I netpub\ftproot\" +
    > this.Session.SessionID.ToString() + ".xls");
    >
    > this.Response.ContentType = "'application/octet-stream'";
    > this.Response.AddHeader("Content-Disposition", "attachment;
    > filename=Fichier_vent.xls");
    > // Envoi le fichier au Navigateur
    > this.Response.WriteFile (@"c:\Inetpub\ftproot\" +
    > this.Session.SessionID.ToString() + ".xls");
    > this.Response.End();
    >
    > This generate a downloading dialogbox in order to download the file
    > generated by the server.
    >
    > With IE6 no problem, the page is still refresh, every 20 seconds.
    >
    > With IE5, it stop to be refreshed after I click on the export button ...
    >
    > What can I do ?
    >
    > Thanks for your help.
    >
    >
    > H. MAILLARD
    >
    >

    Steve C. Orr, MCSD 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