ie6 response.flush problem

R

rocco.padovani

Hello,
I have a problem with a response.flush code only with some versions of
IE6.
This is my code:
private void Page_Load(object sender, System.EventArgs e)
{
Response.Cache.SetExpires( DateTime.Now );
Response.CacheControl = "NO-CACHE";
Response.AddHeader( "PRAGMA", "NO-CACHE" );

Response.Clear();
string str = said:
<br/><div style='text-align:center;padding:4 4 4 4;font-family:
Verdana, Arial, Helvetica, sans-serif;font-size:8pt;font-
weight:bold;color:#666666;border:none;background-color:#F2F8EA;'><img
src='animazione_freccia.gif' width='30' height='30' align='absMiddle'
border='0' /
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Caricamento
dati&nbsp;in corso, attendere...</div></div></center>";
Response.Write(str);
Response.Flush();

SysXml.TransformSource = "TestFlush.xslt";
int delatTime;
try
{
delatTime =
Convert.ToInt32(Request.QueryString["TIME"].ToString());
}
catch{
delatTime = 0;
}
System.Threading.Thread.Sleep(delatTime);


XmlDocument doc = new XmlDocument();
doc.Load(Server.MapPath("TestFlush.xml"));

XslTransform trans = new XslTransform();
trans.Load(Server.MapPath("TestFlush.xslt"));

SysXml.Document = doc;
SysXml.Transform = trans;

}
This code works fine with IE5.5, IE7, IE6 ver
6.0.2900.2180.xpsp_sp2_gdr.061219-0316 (ITA) but not with IE6 ver
6.0.2900.2180.xpsp_sp2_gdr.050301-1519 (EN).
Can somebody help me?
Thanks
Rocco
 
?

=?ISO-8859-1?Q?G=F6ran_Andersson?=

Hello,
I have a problem with a response.flush code only with some versions of
IE6.
This is my code:
8<

This code works fine with IE5.5, IE7, IE6 ver
6.0.2900.2180.xpsp_sp2_gdr.061219-0316 (ITA) but not with IE6 ver
6.0.2900.2180.xpsp_sp2_gdr.050301-1519 (EN).
Can somebody help me?
Thanks
Rocco

Standard question #1:
What do you mean by "not working"?
 
R

rocco.padovani

Standard question #1:
What do you mean by "not working"?

the same server-client configuration has two differents behaviors:
with IEIE5.5, IE7, IE6 ver 6.0.2900.2180.xpsp_sp2_gdr.061219-0316
correctly flushes and show first the message like "Please wait...
loading data" and then the data, while with IE6 ver
6.0.2900.2180.xpsp_sp2_gdr.050301-1519 doesn't flushes the waiting
message and shows all togheter (message and data). This message is
grater than 256 byte..
It looks like a client problem, but the same version of IE6
6.0.2900.2180.xpsp_sp2_gdr.050301-1519 correctly show the "Please wait
" messagge in develop environment..
I don't understand if it's a client or a server problem or bug
Thank you
Rocco
 
A

Andrew Morton

the same server-client configuration has two differents behaviors:
with IEIE5.5, IE7, IE6 ver 6.0.2900.2180.xpsp_sp2_gdr.061219-0316
correctly flushes and show first the message like "Please wait...
loading data" and then the data, while with IE6 ver
6.0.2900.2180.xpsp_sp2_gdr.050301-1519 doesn't flushes the waiting
message and shows all togheter (message and data). This message is
grater than 256 byte..
It looks like a client problem, but the same version of IE6
6.0.2900.2180.xpsp_sp2_gdr.050301-1519 correctly show the "Please wait
" messagge in develop environment..
I don't understand if it's a client or a server problem or bug

It looks like the one IE that doesn't do what you want is simply not
bothering to render the partial data. Maybe you can find something different
in the Internet Options settings in IE.

Andrew
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top