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