摘要:
string sql = "select * from Users where UserName like '%'+@UserName+'%' or UserID like '%'+@UserID+'%'"; SqlParameter[] p = { new SqlParameter("@UserName", txt), ... 阅读全文
摘要:
在登录单击事件中写入Cookie 在加载事件中读取Cookie 在退出登录单击事件中删除Cookie HttpCookie hc = new HttpCookie("login"); //采用键值对的方式添加存储的信息 hc.Values.Add("Name", "jack"); //如果不设置过期时间则关闭浏览器时Cookie自动清... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; using System... 阅读全文
摘要:
用户名: *用户名不能为空 密 码: *密码不能为空 确认密... 阅读全文
摘要:
删除 删除 阅读全文
摘要:
最近测试一个百万级别的数据表的分页性能,需要在表中插入百万级别的测试数据,网上找到如下的方法: 1、首先创建student表 create table student ( sno int primary key identity(1,1) , sname VARCHAR(200) ) 2、--向数据库中插入100万条随机姓名记录用于测试 DECLARE @LN... 阅读全文
摘要:
Visual Studio 2015常用快捷键 2016年06月05日 19:13:089808人阅读 评论(0) 收藏 举报 分类: C/C++/MFC(30) 一、基础快捷键 1.回到上一个光标位置/前进到下一个光标位置 1)回到上一个光标位置:使用组合键“Ctrl + -”; 2)前进到下一个光标位置:“Ctrl + Shift + - ”。 2.复制/剪切/删除整行代... 阅读全文
摘要:
... 阅读全文
摘要:
编号 姓名 ... 阅读全文
摘要:
using System; using System.Web; using System.Data; using System.Data.SqlClient; using System.Configuration; public class checkHandler : IHttpHandler { public void ProcessRequest(HttpContext c... 阅读全文