码迷,mamicode.com
首页 >  
搜索关键字:tar    ( 53769个结果
利用Aspose.Cells完成easyUI中DataGrid数据的Excel导出功能
我准备在项目中实现该功能之前,google发现大部分代码都是利用一般处理程序 HttpHandler实现的服务器端数据的Excel导出,但是这样存在的问题是ashx读取的数据一般都是数据库中视图的数据,难免会含有方便操作的 主键ID这列的记录。现在项目需要在easyUI的DataGrid中显示的数据...
分类:Web程序   时间:2014-05-01 20:20:43    阅读次数:912
Remove Duplicates from Sorted Array
没有想通为什么这个简单的问题竟然不是那么简单,太小看它了,以下是两个别人的很不错的solution:Solution1: 1 public class Solution { 2 public int removeDuplicates(int[] A) { 3 // Start...
分类:其他好文   时间:2014-05-01 20:19:26    阅读次数:384
MDK建立STM32F103*开发模板
一、整体流程1、获取ST库--STM32F10x_StdPeriph_Lib_V3.5.02、新建文件夹并加载文件3、新建工程4、给工程添加组5、设置"Target Option"6、设置Debug选项二、获取ST库 这里用野火光盘提供的"ST库3.5.0源码"--STM32F10x_StdPer....
分类:其他好文   时间:2014-05-01 20:12:19    阅读次数:485
【锋利的JQuery-学习笔记】切换网页皮肤-且保存于Cookie
切换网页皮肤:html片段: 蓝色 紫色 红色 天蓝色 ...
分类:Web程序   时间:2014-05-01 20:10:58    阅读次数:490
Microsoft Azure开发体验 – 网络报名系统
本文通过Azure Website 和 Azure Table Storage 打造一个网络报名系统,介绍Azure的开发体验,感受云的力量。
分类:其他好文   时间:2014-05-01 20:07:49    阅读次数:494
LeetCode5:Longest Palindromic Substring
题目: Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique lo...
分类:其他好文   时间:2014-05-01 20:07:13    阅读次数:429
linux c coding style
liunx c 编码风格
分类:系统相关   时间:2014-05-01 20:06:28    阅读次数:499
创建进程时注入DLL
#include "stdafx.h"#include // 函数声明typedef BOOL (WINAPI* Proc_CreateProcessW)(LPCWSTR lpApplicationName, LPWSTR lpCommandLine, ...
分类:其他好文   时间:2014-05-01 20:05:48    阅读次数:400
最大流之dinic
先用bfs预处理出层次图,然后在层次图上用dfs找增广路径,理论复杂度O(n*n*m)const int INF=0xfffffff ;struct node{ int s,t,cap,nxt ;}e[200005] ;int m,n,head[10005],level[10005],cnt ...
分类:其他好文   时间:2014-05-01 20:05:16    阅读次数:379
异常处理
1.使用DataSource=dt方式绑定GridView并实现删除时,引发了未处理的“RowsDelete”事件: 更改CommandName="Delete" 改一个名字 ,否则会引发GridView自身的Delete事件,但其实并未设置Delete事件。2.使用DataSource=dt方式绑...
分类:其他好文   时间:2014-05-01 18:39:19    阅读次数:286
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!