摘要: #region 下载时重构insert(数据带null处理) public void DownDataInsert(DataTable _dt, string TableName,DBHelper dbhelper) { List<string> _List = new List<string>() 阅读全文
posted @ 2018-07-23 13:04 余生请你多指教 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 1 int RowIndex = datagrid.SelectedIndex; 2 _Table.Rows[RowIndex]["AVERAGE_PRICE"] = DBNull.Value; 1 /// 弹出层对象 2 public static NavigationWindow window 阅读全文
posted @ 2018-07-17 16:03 余生请你多指教 阅读(2507) 评论(0) 推荐(0) 编辑
摘要: <DataGrid.Columns> <DataGridTemplateColumn > <DataGridTemplateColumn.HeaderTemplate> <DataTemplate> <CheckBox Click="HeaderCellLoad" Content="全选" IsCh 阅读全文
posted @ 2018-07-17 15:53 余生请你多指教 阅读(1865) 评论(0) 推荐(0) 编辑
摘要: 1.定时任务: gloabl.asax文件Application_Start()方法注册: System.Timers.Timer t = new System.Timers.Timer(theInterval); //单位毫秒 t.Elapsed += new ElapsedEventHandle 阅读全文
posted @ 2017-12-09 09:42 余生请你多指教 阅读(456) 评论(1) 推荐(0) 编辑
摘要: 1.GET请求: 2.POST请求: 阅读全文
posted @ 2017-11-09 14:40 余生请你多指教 阅读(218) 评论(0) 推荐(0) 编辑
摘要: (HttpWebRequest模拟请求登录):当一些硬件设备接口 或需要调用其他地方的接口时,模拟请求登录获取接口的数据就很有必要。 webclient类:只想从特定的URI请求文件,则使用WebClient; 1.创建带Cookie的webclient: 2.http方法(Get、POST): 3 阅读全文
posted @ 2017-11-09 11:45 余生请你多指教 阅读(1118) 评论(0) 推荐(0) 编辑
摘要: 一、Vue https://vue-loader.vuejs.org/zh-cn/ https://vuejs-templates.github.io/webpack/structure.html 阅读全文
posted @ 2017-10-20 10:41 余生请你多指教 阅读(90) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-10-20 10:26 余生请你多指教 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 一个基于Promise 用于浏览器和 nodejs 的 HTTP 客户端(可实现ajax的请求) 有关学习网址:https://www.tuicool.com/articles/eMb2yuY 、 https://www.kancloud.cn/yunye/axios/234845 此记录只是为了有 阅读全文
posted @ 2017-10-18 14:26 余生请你多指教 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 一、读取xml文件内容: 二、写入xml内容: 三、XMLNode 为抽象类,提供一些操作节点的方法 新增 Add、删除(Remove)、修改节点和属性SetAttributeValue() + save(), 五、linq to xml(xml增删改查) 阅读全文
posted @ 2017-10-17 11:01 余生请你多指教 阅读(225) 评论(0) 推荐(0) 编辑