liumm

导航

2012年12月12日 #

ie9下 “__flash__removeCallback”未定义

摘要: 页面底部加上:window.__flash__removeCallback = (function() { return function(instance, name) { }; // IE 6 dangling semicolon needed )(); // force another closure to prevent IE memory leaks 阅读全文

posted @ 2012-12-12 11:39 liumm 阅读(854) 评论(0) 推荐(0) 编辑

2012年10月29日 #

asp.net动态压缩合并css、js

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using System.Text;using System.Text.RegularExpressions;using Microsoft.Ajax.Utilities;using System.Configuration;using System.IO;using System.IO.Compression;namespace mvcDemo.Controllers{ public ... 阅读全文

posted @ 2012-10-29 19:59 liumm 阅读(990) 评论(7) 推荐(0) 编辑

2012年10月18日 #

【entity framework】code first总结

摘要: [Table("user")]public class U{ /// <summary> /// <para>用户Id(联合主键)</para> /// </summary> [Key] [Column("user_Id",Order=0)] public Int32 UserId{get;set;} /// <summary> /// <para>用户类型Id(联合主键)</para> /// </summary> [Key] [Column("u 阅读全文

posted @ 2012-10-18 18:35 liumm 阅读(1094) 评论(6) 推荐(0) 编辑