摘要: //获取当前系统时间并判断是否为服务时间 TimeSpan nowDt = DateTime.Now.TimeOfDay; TimeSpan workStartDT = DateTime.Parse("10:00").TimeOfDay; TimeSpan workEndDT = DateTime.Parse("15:00").TimeOfDay; if... 阅读全文
posted @ 2019-01-07 17:20 自古养成偏爱我 阅读(7640) 评论(0) 推荐(0) 编辑
摘要: 什么是EF? ADO.NET Entity Framework 是一个对象-关系的映射架构。 它支持直接定义完全独立于数据库结构的实体类,并把它们映射到数据库的表和关系上。 三种编程模型: 数据库优先开发模式(Database First Development) 模型优先开发模式(Model Fi 阅读全文
posted @ 2018-11-20 10:34 自古养成偏爱我 阅读(772) 评论(0) 推荐(0) 编辑
摘要: 写入内容 string userfile = "UserData.txt"; StreamWriter sw = null; //判断是否存在 if (!System.IO.File.Exists(System.Web.HttpContext.Current.Server.MapPath(@"../ 阅读全文
posted @ 2018-04-03 15:02 自古养成偏爱我 阅读(340) 评论(0) 推荐(0) 编辑
摘要: #region 添加checkbox列 public void AddCheckBox() { DataGridViewCheckBoxColumn columncb = new DataGridViewCheckBoxColumn(); columncb.HeaderText = "选择"; co 阅读全文
posted @ 2017-12-28 14:12 自古养成偏爱我 阅读(6997) 评论(1) 推荐(0) 编辑
摘要: 最近在做关于filter登录验证的功能,防止未登录的用户直接通过地址进入系统 LoginFilter类:继承Filter接口 package com.ss.filter; import java.io.IOException;import javax.servlet.Filter;import ja 阅读全文
posted @ 2017-11-23 15:54 自古养成偏爱我 阅读(2329) 评论(0) 推荐(0) 编辑
摘要: jquery根据text选中option的问题: 网上找了好多,但发现因为jquery版本问题,很多并不能用。 最后成功了,写法如下: $('#shop option:contains(' + value + ')').each(function(){ if ($(this).text() == v 阅读全文
posted @ 2017-11-16 17:13 自古养成偏爱我 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 调用的方法: List<Card> temp = cardService.queryRepeat(Type,shop); xml: <select id="queryRepeat" parameterType="String" resultType="Card"> select * from car 阅读全文
posted @ 2017-11-16 14:33 自古养成偏爱我 阅读(26859) 评论(2) 推荐(3) 编辑
摘要: insert into Area (codeid,parentid,cityName) values(11,0,'北京');insert into Area (codeid,parentid,cityName) values(1101,11,'北京市辖');insert into Area (cod 阅读全文
posted @ 2017-11-15 13:38 自古养成偏爱我 阅读(648) 评论(0) 推荐(0) 编辑
摘要: 创建test表后,创建序列: CREATE sequence seq_test INCREMENT BY 1 START WITH 1 minvalue 1 成功后,插入一条语句进行测试: INSERT INTO test(id,XXX) VALUES( SEQ_TEST.NEXTVAL,'XXX' 阅读全文
posted @ 2017-11-13 16:50 自古养成偏爱我 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 最近在写winform程序,先来一个简单的。 读取特定部分Excel的数据读取,读取Excel第30行开始到H列的数据 using System;using System.Collections.Generic;using System.ComponentModel;using System.Dat 阅读全文
posted @ 2016-08-30 10:56 自古养成偏爱我 阅读(2034) 评论(0) 推荐(0) 编辑