摘要: public static string GetPartTypeID(string partTypeNo){ try { DataTable dt=GetPartType(); DataRow[] drs=dt.Select("PartTypeNo='"+partTypeNo+"'"); if(drs.Length>0) { return drs[0]["PartTypeID"].ToString(); } return ""; } catch(Exception ex) { throw(ex 阅读全文
posted @ 2012-03-07 09:34 mebius 阅读(2373) 评论(0) 推荐(0) 编辑