摘要: public class ReceptionAreaRegistration : AreaRegistration { public override string AreaName { get { return "Reception"; } } public override void RegisterArea(AreaRegistrationContext context) { context.MapRoute( "Reception_default", "Reception/{controller}/{action}/{id}" 阅读全文
posted @ 2013-08-15 16:48 nieyulin 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 模糊度的匹配: opacity:0.5(其他浏览器)filter:alpha(opacity=20)(IE浏览器) 阅读全文
posted @ 2013-08-15 15:55 nieyulin 阅读(82) 评论(0) 推荐(0) 编辑
摘要: @{ var deptlist = (List)ViewBag.DeptList; foreach(var user in Model) { var deptname = ""; foreach(var dept in deptlist) { if (user.S_Dept_ID == dept.ID) { deptname = dept.Name; } } @(user.Account)(@user.Name) @deptname @user.FamilyMobile 编辑 } } 阅读全文
posted @ 2013-08-15 13:59 nieyulin 阅读(264) 评论(0) 推荐(0) 编辑
摘要: XMLHttpRequest是ajax的精华所在! 阅读全文
posted @ 2013-08-15 13:32 nieyulin 阅读(104) 评论(0) 推荐(0) 编辑
摘要: json: {name:"nieyulin",age;18} 阅读全文
posted @ 2013-08-15 13:31 nieyulin 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 上班回来,做的第一件事就是总结今天的在公司学的东西,回公司做的第一件事,就是回顾昨天的技术。下班回来,每天花4个小时看书和敲代码 ,这样可以很好的提高自己的代码能力,最近要学的东西 MVC 、JQuery、CSS+div、JS,尽快的提高自己的水平。 阅读全文
posted @ 2013-08-15 07:20 nieyulin 阅读(100) 评论(0) 推荐(0) 编辑