zoukankan      html  css  js  c++  java
  • 动态生成表格 C#

     public string CreateTable()
            {

               
                StringBuilder sb = new StringBuilder("");
                int row = 1;//行数
               
                if (true )//是否有数据
                {
                    int nRowCount = 10;//所有条数

                    row = (int)Math.Ceiling(nRowCount / 5.0);//5.0表示每行有多少条数据
                    int colNum = 5;//列数

                    for (int m = 0; m < row; m++)
                    {
                        //if (m % 2 == 0)    //偶数行
                        //{
                        //    sb.Append("<tr class=\"one_tr\">"); //偶数行样式
                        //}
                        //else   //奇数行
                        //{
                        //    sb.Append("<tr class=\"two_tr\">"); //奇数行样式
                        //}

                        sb.Append("<tr>"); //加行数


                        for (int n = 0; n < colNum; n++)
                        {


                            sb.Append("<td>");
                            int currentCount = m * 5 + n;//当前所处条数

                            if (currentCount < nRowCount)//当前所处条数是否在数据量的有效范围内
                            {
                              
                                //添加表格内的内容
                            }
                            else
                            {
                                //置空
                                sb.Append("&nbsp;");
                            }

                            sb.Append("</td>");
                        }

                        sb.Append("</tr>");

                    }

                }

                return sb.ToString();

            }

  • 相关阅读:
    下面这段java的源代码的意思
    Swing高级JInternalFrameTest内部窗体
    (转)为什么水平滚动条显示不了
    创建主窗体(转)
    javax.swing.JOptionPane.showMessageDialog() 方法
    Java图形界面设计
    java 做项目时遇到的一些问题
    selectmethod=cursor的含义及其使用
    java.sql.SQLException: No suitable driver found for jdbc:microsoft:sqlserver://localhost:1433;
    10.24
  • 原文地址:https://www.cnblogs.com/luluping/p/1201290.html
Copyright © 2011-2022 走看看