摘要: 上班回来,做的第一件事就是总结今天的在公司学的东西,回公司做的第一件事,就是回顾昨天的技术。下班回来,每天花4个小时看书和敲代码 ,这样可以很好的提高自己的代码能力,最近要学的东西 MVC 、JQuery、CSS+div、JS,尽快的提高自己的水平。 阅读全文
posted @ 2013-08-15 07:20 nieyulin 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1.创建页面树2.确定IsPostBack3.初始化4.加载ViewData5.处理PostBackData6.加载7.处理PostBackData8.触发改变事件9.触发点击事件10.渲染之前11.保存页面状态12.渲染 阅读全文
posted @ 2013-08-12 22:04 nieyulin 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 一、选取 DOM 元素 jQuery 的核心是通过各种选择器,选中 DOM 元素,可以用 querySelectorAll 方法模拟这个功能。var $ = document.querySelectorAll.bind (document); 这里需要注意的是,querySelectorAll 方法返回的是 NodeList 对象,它很像数组(有数字索引和 length 属性),但不是数组,不能使用 pop、push 等数组特有方法。如果有需要,可以考虑将 Nodelist 对象转为数组。myList = Array.prototype.slice.call (myNodeList); 二、. 阅读全文
posted @ 2013-08-12 21:57 nieyulin 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 关于@Html.DropDownList(),当其属性设为Disabled的时候无法解析其那么属性! 阅读全文
posted @ 2013-08-06 18:25 nieyulin 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1.创建控件树2.确定是否回发(IsPostBack)3.初始化(preinit,init,initcompleted)4.加载ViewState,第一次处理回发数据5.加载 PreLoad Load6.再一次处理回发数据7.触发改变事件,出发点击事件8.PreRender9.保存页面状态10.渲染 阅读全文
posted @ 2013-08-05 07:11 nieyulin 阅读(117) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Drawing;using System.Drawing.Drawing2D;using System.Drawing.Imaging;using System.IO;namespace X{ public class VerifyHelper { public static byte[] CreateImage(string checkCode) { int iwidth = (int)(checkCode.Length * 11.5); System.Drawing.Bitmap image = new System.Drawing.Bi 阅读全文
posted @ 2013-07-30 16:07 nieyulin 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 关于技术,还是要自己不断的提高自己对代码的理解能力,最关键的就是要自己不断地编写代码,这样可以更好地提高自己的实力。最近的学习:IIS的部署、MVC的学习、BLL+DAL+UI、CSS+DIV、HTML、js、JQuery、Asp.NET、C#的基础语法,多动脑子去学习。 阅读全文
posted @ 2013-07-30 15:39 nieyulin 阅读(123) 评论(0) 推荐(0) 编辑
摘要: ViewControllerModel 阅读全文
posted @ 2013-07-15 21:52 nieyulin 阅读(88) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;namespace EF_Exercise{ class Program { static void Main(string[] args) { Heima3DbShitEntities db = new Heima3DbShitEntities(); Customer custom =new Customer(); //添加实体 db.Custom... 阅读全文
posted @ 2013-06-22 16:56 nieyulin 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 今晚的任务:开始看EF的电子书,提高自己对EF框架的理解,真正的理解代码的意义。查看项目代码,并多做分析,提高自己的实力,更好的融入到公司的项目中去。 阅读全文
posted @ 2013-06-22 15:34 nieyulin 阅读(253) 评论(0) 推荐(0) 编辑