摘要:
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}" 阅读全文
摘要:
模糊度的匹配: opacity:0.5(其他浏览器)filter:alpha(opacity=20)(IE浏览器) 阅读全文
摘要:
@{ 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 编辑 } } 阅读全文
摘要:
XMLHttpRequest是ajax的精华所在! 阅读全文
摘要:
json: {name:"nieyulin",age;18} 阅读全文
摘要:
上班回来,做的第一件事就是总结今天的在公司学的东西,回公司做的第一件事,就是回顾昨天的技术。下班回来,每天花4个小时看书和敲代码 ,这样可以很好的提高自己的代码能力,最近要学的东西 MVC 、JQuery、CSS+div、JS,尽快的提高自己的水平。 阅读全文