字段控件组合
tb_Report_Template表格
DECLARE @Asql VARCHAR(MAX)
XElement xe50 =XElement.Parse(dt50.Rows[0]["XMLData"].ToString());
http://www.360doc.com/content/19/0109/17/46862318_807740032.shtml
query1是DataRow集合,然后query1.CopyToDataTable<DataRow>()就是将行集合转换成DataTable
{System.Data.EnumerableRowCollection<System.Data.DataRow>}
FineUI.TextBox TBX1 = new FineUI.TextBox();
[
{"探头编号":"探头种类", "(1)":" ", "(2)":" ", "(3)":" "},
{"探头编号":"晶片尺寸", "(1)":" ", "(2)":" ", "(3)":" "}
]
就是将json格式的表格转换成DataTable样式的
DataTable table = Govaze.Components.DataTableExtensions.ToDataTableJson(
newD1t.Rows[c]["FiledDataSources"].ToString()
);
ASP.NET中使用动态LoadControl和缓存问题
https://blog.csdn.net/francsescoli/article/details/1190372