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