• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
wjshan0808

Learn from yesterday, Live for today, For a better tomorrow.
 ————wjshan0808

博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
2014年3月2日
JQuery权限管理
摘要: >" id="btnAllAdd" /> " id="btnAdd" /> ... 阅读全文
posted @ 2014-03-02 01:17 wjshan0808 阅读(818) 评论(0) 推荐(0)
JQuery下CheckBox全选全不选反选
摘要: 1 2 3 4 5 6 7 8 9</body 阅读全文
posted @ 2014-03-02 01:11 wjshan0808 阅读(186) 评论(0) 推荐(0)
在多项目中再次解读多层编程理念
摘要: 项目列表:注意代码: public List Select(string id) { string sql = "select * from tblStudentInfo where 学号 like '%" + @id + "%'"; //string sql = "select * from tblStudentInfo where 学号 like '%@id%'"; SqlHelper helper = new SqlHelper(); using (DataTable dt... 阅读全文
posted @ 2014-03-02 01:07 wjshan0808 阅读(256) 评论(0) 推荐(0)
2014年2月28日
网页中的开关灯原理
摘要: 一闪一闪亮晶晶,满天都是小行星。 阅读全文
posted @ 2014-02-28 22:31 wjshan0808 阅读(404) 评论(0) 推荐(0)
对数据的增删查改深度理解三(多)层编程理念
摘要: 比较容易遗忘的代码:UI层: private void btnSelect_Click(object sender, EventArgs e) { if (txtIDCar.Text.Trim().Length == 18) { DeliverData deliver = new DeliverData(); TblPerson person = null; if ((person = deliver.Select(txtIDCar.... 阅读全文
posted @ 2014-02-28 02:43 wjshan0808 阅读(279) 评论(0) 推荐(0)
2014年2月24日
组合类中复制函数的调用
摘要: // 组合类中复制函数的调用.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std;class Point{public: Point(int xx=0,int yy=0)//内联的构造函数 { x=xx,y=yy; } Point(Point &p);//复制构造函数 int getX(){return x; }//内联函数 int getY() { return y; } //~Point();privat... 阅读全文
posted @ 2014-02-24 23:51 wjshan0808 阅读(561) 评论(0) 推荐(0)
用用户登录简单理解三层思想
摘要: 项目文件列表:GetUserLoginState.sc public class GetUserLoginState { /// /// 检测用户登录状态 /// public GetUserLoginState() { } //推荐在此定义类型变量,而不是在方法中new一个新的对象 private TLoginModel model; public UserLoginStateEnum LoginState(string userName, strin... 阅读全文
posted @ 2014-02-24 20:04 wjshan0808 阅读(291) 评论(0) 推荐(0)
用简单的修改数据理解三层概念
摘要: 项目文件列表:文件中值得注意的代码:DataManager.cs: public List GetDataList() { List models; SqlHelper sqlhelper = new SqlHelper(); string sql = "select * from MyOrders"; using (SqlDataReader reader = sqlhelper.ExecuteReader(sql, null)) { ... 阅读全文
posted @ 2014-02-24 19:51 wjshan0808 阅读(212) 评论(0) 推荐(0)
2014年2月22日
单表数据加载到TreeView(.Node.Level>=2) "蝴蝶效应" SelectedNode注意事项 效能优化 综合问题
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Configuration;using System.Data;using System.Data.SqlClient;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace 将单表数据加载到TreeView{ public pa... 阅读全文
posted @ 2014-02-22 00:53 wjshan0808 阅读(956) 评论(0) 推荐(0)
2014年2月19日
NPOI 操作数据库中数据的导入导出(Excel.xls文件) 和null数据的处理。
摘要: App.config: *.scusing NPOI.HSSF.UserModel;using NPOI.SS.UserModel;//using NPOI.HSSF.UserModel;using System;using System.Collections.Generic;using System.ComponentModel;using System.Configuration;using System.Data;using System.Data.SqlClient;using System.Drawing;using System.I... 阅读全文
posted @ 2014-02-19 23:10 wjshan0808 阅读(1638) 评论(0) 推荐(0)
2014年2月15日
网页中搜索框效果原理。
摘要: 哈哈,只是简单的原理(代码可能不是这样写的),明白原理就好~ 阅读全文
posted @ 2014-02-15 23:57 wjshan0808 阅读(533) 评论(0) 推荐(0)
网页中层的遮罩效果原理。
摘要: 阅读全文
posted @ 2014-02-15 23:49 wjshan0808 阅读(768) 评论(0) 推荐(0)
网页中评分效果原理。
摘要: 哈哈,只是简单的原理(代码可能不是这样写的),明白原理就好~~~~~ ☆ ☆ ☆ ☆ ☆ 百度浏览器效果图:JQuery代码: ☆☆☆☆☆☆ jquery-1.7.1.js文件官网:http://jquery.com/download/ 阅读全文
posted @ 2014-02-15 02:01 wjshan0808 阅读(291) 评论(0) 推荐(0)
网页中密码强度验证原理。
摘要: 哈哈,只是简单的原理(代码可能不是这样写的),明白原理就好~~~~~百度浏览器效果图: 阅读全文
posted @ 2014-02-15 01:54 wjshan0808 阅读(656) 评论(0) 推荐(0)
2014年2月10日
网页元素遍历之“呜呜”“哈哈”
摘要: 如图点击按钮改变文字状态。 阅读全文
posted @ 2014-02-10 21:50 wjshan0808 阅读(284) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3