zoukankan      html  css  js  c++  java
  • Flush输出表格内容

    以前看到关于table布局和div布局的对比,有人总结一条div的优势:table必须等到全部加载完成才能被浏览器显示出来,而div则是流式的边加载边显示。

    今天得闲实验HttpResponse.Flush的时候顺手试试看table的加载行为。

    打开VS, 新建一个ASP.NET MVC Web Application。在HomeController.cs中加入如下代码

    public string FlushTable()
    {
        this.Response.Write("<table style=\"border: 1px solid;\">");
        this.Response.Write("<thead><td style=\" 150px; border: 1px solid red;\">Country Name</td><td style=\" 100px; border: 1px solid red;\">Code</td>");
        this.Response.Write("<td style=\" 100px;border: 1px solid red;\">Alias</td><td style=\" 100px;border: 1px solid red;\">Capital</td></thead>");
        this.Response.Write("<tbody>");

        this.Response.Flush();
        System.Threading.Thread.Sleep(1000);

        this.Response.Write("<tr><td>United States</td><td>001</td><td>USA</td><td>Washington</td></tr>");
        this.Response.Flush();
        System.Threading.Thread.Sleep(1000);

        this.Response.Write("<tr><td>United Kingdom</td><td>xxx</td><td>UK</td><td>London</td></tr>");
        this.Response.Flush();
        System.Threading.Thread.Sleep(1000);

        this.Response.Write("<tr><td>China</td><td>086</td><td>PRC</td><td>Beijing</td></tr><tr>");
        this.Response.Flush();
        System.Threading.Thread.Sleep(1000);

        this.Response.Write("<td>Japan</td><td>xxx</td><td>Nihon</td><td>Tokyo</td></tr>");
        this.Response.Flush();
        System.Threading.Thread.Sleep(1000);

        this.Response.Write("</tbody></table>");           
        return "<h3>Finished</h3>";
    }

    在Chrome上测试显示,表格能够一行一行显示出来。(其他浏览器未测试)

    但是测试足够表明之前看到的关于div布局和table布局的那句论断是不正确的。跟我一样半路出家的web程序员,还是应该多写代码多做实验。

    尽信书则不如无书。


    Tags: ASP.NET, MVC, HTML, 布局

    If you love him, teach him C++, for it's heaven;
    If you hate him, teach him C++, for it's hell
  • 相关阅读:
    git处理冲突提交,撤销提交命令
    RocketMQ(4.7.0)单机与集群搭建,控制台搭建,并与springboot整合
    JVM进程的优雅关闭
    MySQL字段等值查询时,尾部有空格也能匹配上的坑
    带有连接池的Http客户端工具类HttpClientUtil
    比较两个jar包的版本号
    源码解读SLF4J绑定日志实现的原理
    log4j输出到控制台的性能问题
    多表查询
    分页优化
  • 原文地址:https://www.cnblogs.com/brucejia/p/2791082.html
Copyright © 2011-2022 走看看