10 2016 档案

js 防止页面后退的方法
摘要://防止页面后退 history.pushState(null, null, document.URL); window.addEventListener('popstate', function () { history.pushState(null, null, document.URL)... 阅读全文

posted @ 2016-10-25 09:36 空明流光 阅读(2315) 评论(0) 推荐(0) 编辑

asp.net 设置网页过期
摘要:/// /// 判断网页是否过期 /// /// private bool isPageExpired() { if (Session["TimeStamp"] == null || ViewState["TimeStamp"] == nul... 阅读全文

posted @ 2016-10-21 14:42 空明流光 阅读(792) 评论(0) 推荐(0) 编辑

C#子类调用基类构造备忘
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace FirsteLite.OMS.Checking.MarkingService { public class FormalMarkingService:MarkingServiceBase {... 阅读全文

posted @ 2016-10-12 11:06 空明流光 阅读(278) 评论(0) 推荐(0) 编辑

asp.net 自定义控件 嵌入资源文件 备忘
摘要:要想在自定义用户控件中嵌入资源,从以下几个步骤入手: 1.在AssemblyInfo.cs中注册资源,文件夹层级用点隔开。例如: [assembly: System.Web.UI.WebResource("FirsteLite.OMS.Checking.UserControls.test.jpg", 阅读全文

posted @ 2016-10-11 13:37 空明流光 阅读(310) 评论(0) 推荐(0) 编辑

CSS实现高度和宽度自适应
摘要:其实用绝对定位也可以实现高度和宽度的自适应,从而出现自适应大小的区域及滚动条。 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transit 阅读全文

posted @ 2016-10-09 13:27 空明流光 阅读(2071) 评论(0) 推荐(0) 编辑

导航