码迷,mamicode.com
首页 > 其他好文
使用服务器端控件(GridView)进行数据导出(Excel和Word)
1.我使用三层做的,在DAL和BLL中引用System.Web;命名空间2.写三层方法 #region 额外 /// /// 导出Excel和导出Word的方法 /// /// 要导出的数据 /// 导出数据的文档类型 ...
分类:其他好文   时间:2015-03-11 17:00:55    阅读次数:144
ARX设备配置
1、登陆ARX console,执行命令rollback --keeplicenseaction.actiondomain> rollback --keeplicenserollback: Please first run "passwd" to set administrative passwor...
分类:其他好文   时间:2015-03-11 17:01:30    阅读次数:242
删除有序链表中重复的元素
比如 1->2->2->3,删除重复后,变为1->3。void delDup(Node* head){ Node node; node.next = head; Node* n1, n2; n1 = node; n2 = node->next; int d...
分类:其他好文   时间:2015-03-11 17:02:16    阅读次数:185
获得现在的日期
代码:- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. //调用获得现在日期的函数。 ...
分类:其他好文   时间:2015-03-11 16:59:48    阅读次数:158
淡出淡入
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. //UIView UIView *v...
分类:其他好文   时间:2015-03-11 17:00:55    阅读次数:226
使用Auto Layout中的VFL(Visual format language)--代码实现自动布局
http://www.cocoachina.com/ios/20141209/10549.html本文将通过简单的UI来说明如何用VFL来实现自动布局。在自动布局的时候避免不了使用代码来加以优化以及根据内容来实现不同的UI。一:API介绍NSLayoutConstraint API1234NSLay...
分类:其他好文   时间:2015-03-11 16:59:54    阅读次数:135
20150311
//格式化为时间字符串 yyyy-mm-dd hh:mm:ssfunction strDate(date, type) { var y = date.getFullYear(), m1 = date.getMonth() + 1, d = date.getDate(...
分类:其他好文   时间:2015-03-11 16:58:44    阅读次数:119
ckeditor详细设置
CKEditor 3 JavaScript API Documentation:http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.htm一、使用方法:1、在页面中引入ckeditor核心文件ckeditor.js2、在使用编辑...
分类:其他好文   时间:2015-03-11 16:57:26    阅读次数:189
Minimum Inversion Number
DescriptionThe inversion number of a given number sequence a1, a2, ..., an is the number of pairs (ai, aj) that satisfy i aj.For a given sequence of ....
分类:其他好文   时间:2015-03-11 16:58:40    阅读次数:143
在页面中使用Eval的两种方案
①直接取②进行运算,注意其中判断是否为空使用DBNull.Value③拼接申请"%>,转换为整型,通过三目运算符进行判断,并且拼接一个字符串链接
分类:其他好文   时间:2015-03-11 16:57:19    阅读次数:124
React 篇 Comment Model
Model 原型 Comment Box Comments React中,可以定义类似的模型在这里我们可以看到我们熟悉的模型,例如 div h1,但是也能看到我们自定义的CommentList CommentForm.而对于这个CommentList呢,自己又需要重新定...
分类:其他好文   时间:2015-03-11 16:56:08    阅读次数:113
Reorder List
Reorder List问题:Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' ...
分类:其他好文   时间:2015-03-11 16:58:37    阅读次数:197
获得徐家汇的天气预报
代码:- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. [self getWeatherIn...
分类:其他好文   时间:2015-03-11 16:57:12    阅读次数:139
再谈 Object Factories(对象工厂)
为什么再谈一次,因为上次代码实在是不够好。上篇文章 对象工厂给出的代码太过拙劣,限于学识,我自己类型擦除技术仅仅是把对象的指针转换为void* 而已,实际上可以更为巧妙。这次利用新的类型擦出技术,给出一个完美的解决方,请看下文。
分类:其他好文   时间:2015-03-11 16:56:11    阅读次数:148
BigPipe学习研究
原文:http://www.searchtb.com/2011/04/an-introduction-to-bigpipe.html1. 技术背景 FaceBook页面加载技术试想这样一个场景,一个经常访问的网站,每次打开它的页面都要要花费6 秒;同时另外一个网站提供了相似的服务,但响应时间只需3 ...
分类:其他好文   时间:2015-03-11 16:54:50    阅读次数:116
textarea 高度自适应
jQuery.fn.extend({ autoHeight: function(){ return this.each(function(){ var $this = jQuery(this); if( !$this.attr('_initAdjustHeight') ){ $this.attr('...
分类:其他好文   时间:2015-03-11 16:54:39    阅读次数:139
13.使用toggle()方法绑定多个函数
toggle()方法可以在元素的click事件中绑定两个或两个以上的函数,同时,它还可以实现元素的隐藏与显示的切换,绑定多个函数的调用格式如下:$(selector).toggle(fun1(),fun2(),funN(),...)其中,fun1,fun2就是多个函数的名称例如,使用toggle()...
分类:其他好文   时间:2015-03-11 16:55:53    阅读次数:180
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!