04 2014 档案

摘要:需要重新再Grid_rowEditipublic void GridView1_RowEditing(object sender, GridViewEditEventArgs e) { DataTable dt = new DataTable(); ... 阅读全文
posted @ 2014-04-18 09:52 静C心 阅读(641) 评论(0) 推荐(0)
摘要:select * from (select * from table1 left join table2 on table1.field1=table2.field1) as table1 left join table3 on table1.field1=table3.field1 阅读全文
posted @ 2014-04-17 09:21 静C心 阅读(178) 评论(0) 推荐(0)
摘要:DataTabledt=newDataTable("Table1");dt.Columns.Add("id",typeof(Int16));dt.Columns.Add("name",typeof(String));dt.Columns.Add("address",typeof(String));d... 阅读全文
posted @ 2014-04-16 15:55 静C心 阅读(334) 评论(0) 推荐(0)