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();

            }

  • 相关阅读:
    Python3-元组
    Python3-列表
    Python3-字符串
    Python3-for循环机制
    Python3-初识
    优先队列——priority queue
    单调队列 —— 滑动窗口
    SDNU_ACM_ICPC_2021_Winter_Practice_7th [个人赛]
    博弈论入门(论和威佐夫、巴什、尼姆打牌被吊打是什么感受(╥﹏╥)
    字符串最大最小表示法
  • 原文地址:https://www.cnblogs.com/luluping/p/1201290.html
Copyright © 2011-2022 走看看