摘要: private string _filePath = @"1.txt"; //查询文件是否存在,如果不存在,则创建 if (!File.Exists(_filePath)) { using (File.Create(_filePath)) { } } using (StreamReader sr = 阅读全文
posted @ 2018-08-30 15:38 #小谦# 阅读(1545) 评论(0) 推荐(0) 编辑
摘要: LibDataTable roomdt = roomDataTable as LibDataTable; if (!roomdt.Rows.Cast<DataRow>().Any(dRow => DataUtils.CStr(dRow["RoomId"]).Equals(roomId))) { We 阅读全文
posted @ 2018-08-07 16:32 #小谦# 阅读(139) 评论(0) 推荐(0) 编辑
摘要: href="\\#" 跳转到本页 return false 相当于不刷新 href="javascript:void(0)" 或者 href="javascript:void 0" 可以取代上面两句(其中括号可以不要) 阅读全文
posted @ 2018-07-24 14:08 #小谦# 阅读(214) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/peterzb/archive/2009/05/30/1491923.html 下面介绍三种对comboBox绑定的方式,分别是泛型中IList和Dictionary,还有数据集DataTable 一、IList 现在我们直接创建一个List集合,然后绑 阅读全文
posted @ 2018-07-09 17:32 #小谦# 阅读(4500) 评论(2) 推荐(0) 编辑
摘要: OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Desktop); 阅读全文
posted @ 2018-07-03 16:27 #小谦# 阅读(2571) 评论(1) 推荐(0) 编辑