Consultor Eletrônico



Kbase P80515: Using wsasp.dll and ASP for WebSpeed, data is not sent to the web browser until the query has finish
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/16/2008
Status: Unverified

SYMPTOM(s):

Using wsasp.dll and ASP for WebSpeed, data is not sent to the web browser until the query has finished.

CAUSE:

This is caused by an expected behavior in Internet Explorer. Not a Progress problem.

FIX:

Normally an output will look like this:

{&OUT} <TABLE>
For each ... :
{&OUT} '<TD>data here</TD>
end.
{&OUT} </TABLE>

Internet Explorer will not show you the table as it has not finished and reached the </TABLE> (the table end tag).
[Older version of Netscape accepts printing a table without end tag.]

By modifying the code to do a TABLE for each line Internet Explorer will print the tables that have reach the table end tag:

{&OUT} <TABLE><TD>data here</TD></TABLE>

and the data comes out as it is processed in the for each.