
asp.net
文章平均质量分 56
SMG008
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
.net(多值)Cookie赋值、读取、修改
Request.Cookies读取 Response.Cookies设置 --赋值 HttpCookie MyCookie = new HttpCookie("LastVisit"); DateTime now = DateTime.Now; MyCookie.Value = now.ToString(); MyCookie.Expires = now.AddHours(1);原创 2012-02-01 14:54:39 · 1640 阅读 · 0 评论 -
将excel数据解析并插入数据库
/// /// 将excel数据解析并插入数据库 /// /// /// [DirectMethod] public void UpLoad_btnClick(object sender, DirectEventArgs e) { stri原创 2012-02-06 17:28:50 · 799 阅读 · 0 评论 -
.net 如何将datatable作为参数传入sql的存储过程
问题如题, 现在通过读取execl获得一个datatable,现在想通过该datatable与数据库中的某张表做join查询,不知道如何将datatable作为参数传入数据库,求指导!!!原创 2013-09-03 20:55:05 · 1002 阅读 · 0 评论