動態取值
阿新 • • 發佈:2018-12-11
DataSet dsResult = IBLL.Factory.wfProjectStep_TableInfoCreate().GetTableInfo(strWhere);
//獲得動態的列值
public string GetTableCloInfo(DataSet ds, string Col) //dsResult裡面-------【Col】 列的名稱
{ string Result = ""; if (ds == null) { //Result = "資料為空";return Result; } if (ds.Tables[0].Rows.Count > 0) { try { Result = ds.Tables[0].Rows[0][Col] + ""; } catch { Result = ""; } }return Result; }