Thanks again for replying!
I still can't get it to work. I must be doing something wrong, but I don't realize where, or what.![]()
The test code right now looks like this:
VB Code:
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim counter Response.Write("<table border=""1"" width=""500"">") Response.Write("<colgroup>") Response.Write("<col width=""500"" />") Response.Write("</colgroup>") Response.Flush() For counter = 1 To 5 System.Threading.Thread.Sleep(2000) Response.Write("<tr><td>" & counter & "</td></tr>") Response.Flush() Next Response.Write("</table>") End Sub
While the page process, If I right click and select view source, I can see the tr and td forming up. But it still doesn't display as it gets received. The code IS received, row by row, but not displayed. It gets displayed as soon as the page finishes rendering and gets dumped to the browser.
The html code looks weird too. It looks like this:
VB Code:
[B]<table border="1" width="500"><colgroup><col width="500" /></colgroup><tr><td>1</td></tr><tr><td>2</td></tr><tr><td>3</td></tr><tr><td>4</td></tr><tr><td>5</td></tr></table>[/B] <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <title>WebForm1</title> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> </HEAD> <body> <form name="Form1" method="post" action="WebForm1.aspx" id="Form1"> </form> </body> </HTML>
The table gets dumped before anithing else. Maybe that's what's giving me issues?
Thanks
HoraShadow




Reply With Quote