晚风

博客园 首页 新随笔 联系 订阅 管理

随笔分类 -  Asp.net

摘要:当父级容器设置positon是absolute或relative,combobox显示的就会出现偏移,解决办法如下:添加这个样式.ajax__combobox_itemlist{ position:relative !important; top: 0px !important; left: 0px !important;} 阅读全文
posted @ 2013-10-30 10:01 晚风 阅读(296) 评论(0) 推荐(0)

摘要:项目中用到RouteTable,发布到IIS7中,访问之后没有任何反应,google半天终于找到了解决方法,就是要把iis的“HTTP重定向”功能打开 阅读全文
posted @ 2013-07-04 11:11 晚风 阅读(186) 评论(0) 推荐(0)

摘要:1、ActiveRecord配置文件ARConfig.xml,并将配置文件的“生成操作”改成“嵌入的资源”2、使用到的DLL文件 3、测试实体类UserInfousingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingCastle.ActiveRecord;usingNHibernate;namespaceCY.Domain{[ActiveRecord("T_User")]publicclassUserInfo:ActiveRecordBase{#region属性[P 阅读全文
posted @ 2013-06-27 23:17 晚风 阅读(397) 评论(0) 推荐(0)

摘要:View Code 1$(function(){2functionListCheckbox(option){3var_defaultOption={4allSelector:null,5itemSelector:null,6cacheInput:null7};8this.option=$.extend({},_defaultOption,option);910this._init();11}1213ListCheckbox.prototype={14//初始化15_init:function(){16this._addEventListener();17this._setLoadChecked 阅读全文
posted @ 2013-05-08 10:10 晚风 阅读(1148) 评论(0) 推荐(0)