zoukankan      html  css  js  c++  java
  • 动态生成Table

    Script:

     <tr>

                <td valign="top">

                    <table style="100%; border-color:Gray; border-style:double; border-3">

                        <%=ViewState["ViewCarePlanRiskFactors"]%>

                    </table>

                </td>

                <td valign="top">

                    <table style="100%; border-color:Gray; border-style:double; border-3">

                        <%=ViewState["ViewCarePlanGoals/Instructions"]%>

                    </table>

                </td>

                <td valign="top">

                    <table style="100%; border-color:Gray; border-style:double; border-3">

                        <%=ViewState["ViewCarePlanInterventions"]%>

                    </table>

                </td>

                <td valign="top">

                    <table style="100%; border-color:Gray; border-style:double; border-3">

                        <%=ViewState["ViewPlanMedications"]%>

                        <%=ViewState["ViewCarePlanOtherMedications"]%>

                    </table>

                </td>

                <td valign="top">

               <asp:Label runat="server" ID="lblPractitioner"/>

                </td>

            </tr>

    Code:

        protected void CreateSectionAndItemStrBasic(Dictionary<string, MyBasicProtocolStructure[]> dictStruc,

                Dictionary<string, MyPatientProtocolItem[]> dictPatientItem,ref string str, string prefixstr, string parentId)

            {

                if (dictStruc.ContainsKey(parentId))

                {

                    MyBasicProtocolStructure[] myBasicProtocolStruList = dictStruc[parentId] as MyBasicProtocolStructure[];

                    foreach (MyBasicProtocolStructure myBasicProtocolStruc in myBasicProtocolStruList)

                    {

                        str += "<tr><td>" + prefixstr + myBasicProtocolStruc.Name + "</td></tr>";

     

                        CreateSectionAndItemStrBasic(dictStruc, dictPatientItem, ref str, "&nbsp;&nbsp;&nbsp;&nbsp;" + prefixstr, myBasicProtocolStruc.Id);

                    }

                }

                if (dictPatientItem.ContainsKey(parentId))

                {

                    MyPatientProtocolItem[] myPatientProtocolItemList = dictPatientItem[parentId] as MyPatientProtocolItem[];

     

                    foreach (MyPatientProtocolItem myPatientProtocolItem in myPatientProtocolItemList)

                    {

                        str += "<tr><td>" + prefixstr + myPatientProtocolItem.Content + "</td></tr>";

                    }

                }

            }

  • 相关阅读:
    npm 安装卸载模块 & ionic插件安装与卸载
    Vue中v-model解析、sync修饰符解析
    Vue props用法详解
    vue页面跳转
    Swift 4 中的泛型
    Swift枚举的全用法
    蓝牙 BLE 三种 UUID 格式转换
    SVG图案
    SVG渐变
    SVG坐标系统及图形变换
  • 原文地址:https://www.cnblogs.com/quietwalk/p/2283953.html
Copyright © 2011-2022 走看看