Ask a Question related to ASP.NET General, Design and Development.
-
Herve MAILLARD #1
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
-
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... -
crazy
guys: this is a highly simplified version of the helloVid app from the oreilly book: in the fla: stop(); myID = ""; nc = new... -
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... -
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... -
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... -
Steve C. Orr, MCSD #2
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



Reply With Quote

