E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
recipes
[翻译]ASP.NET MVC 3 开发的20个秘诀(十一)[20
Recipes
for Programming MVC 3]:通过表单上传文件
议题 同意用户将文件上传并保存到你的网站。 解决方案 通过HttpPostedFileBase实现将文件上传并保存到磁盘。 讨论 在下面这个示例中,我们将在之前创建的添加和编辑书籍的视图中添加上传一个缩略图的控件。开始,必须修改Books和Create视图表单的“enctype”以及在表单中用缩略图控件替换文本输入框。以下是修改后的视图文件: @mod
·
2015-10-23 09:21
programming
[翻译]ASP.NET MVC 3 开发的20个秘诀(十二)[20
Recipes
for Programming MVC 3]:缩放图片尺寸创建缩略图
议题 用户上传到网站上的大多数的图片都是大尺寸的照片,通常在用户想看完整图片之前网站会展示出这些图片或照片的缩略图。 解决方案 使用以下的类来调整上传的图片文件的宽和高:FileStream,Image,Bitmap和Graphics。 讨论 在下面的示例中,将修改和重组之前创建的FileUpload类。创建一个新的称为“ResizeImage”的方法来调整图片大小。调整之后的图片文件将
·
2015-10-23 09:21
programming
[翻译]ASP.NET MVC 3 开发的20个秘诀(十)[20
Recipes
for Programming MVC 3]:通过关键字进行列表搜索
议题 当排序、分页和筛选不能够帮助用户找到所需的内容,下一步最好的方法就是让用户输入他所想要查找的内容。 解决方案 使用Html.Helper创建表单和文本输入框,在筛选器选择结果的基础上用Linq Libary使用用户输入的关键字进行查询。 讨论 就像之前的秘诀所做的,添加关键字搜索需要修改Books和Index视图以及BooksController控制器。在视图中创建一个新的表单,添
·
2015-10-23 09:20
programming
[翻译]ASP.NET MVC 3 开发的20个秘诀(七)[20
Recipes
for Programming MVC 3]:对列表进行排序
议题 现在有一个很大的列表(例如,图书列表),想找到某一项是非常难的。如果针对列表中的某一项进行排序,应该会对查找有所帮助。 解决方案 将书籍清单列表的列标题更新为链接,当链接被点击的时候,将通过Linq针对选中列的内容进行排序(通过再次点击标题链接来切换升序还是降序)。 讨论 与我之前使用过的框架相比添加排序、自动生成视图的过程让我感到有些惊讶。希望在外
·
2015-10-23 09:19
programming
[翻译]ASP.NET MVC 3 开发的20个秘诀(九)[20
Recipes
for Programming MVC 3]:对列表进行筛选
议题 当排序和分页不能帮助用户找到他们需要的结果,那就根据条件筛选内容的方式来帮助他们寻找。 解决方案 添加一个新的链接可以让用户选择预制的标准内容通过Linq Library对列表内容进行数据筛选。 讨论 添加筛选链接,需要修改Books视图、Index视图和BookController控制器。修改与前两个秘诀类似,添加HTML链接,内容必须是允许用户选择的内容。添加三个新链接:全部、
·
2015-10-23 09:19
programming
[翻译]ASP.NET MVC 3 开发的20个秘诀(五)[20
Recipes
for Programming MVC 3]:发送欢迎邮件
议题 许多网站在访问内容或者发表评论的时候 要求用户注册或登录。这样的网站越来越多,用户非常难以记住每个他注册过的站点以及信息。而在用户提交注册信息的时候,网站可以发送邮件,提醒用户他们刚刚签署过注册信息,方便他们稍后访问时查询。 解决方案 实现SmtpClient类和MailMessage类在用户注册后发送欢迎邮件。 讨论 发送一份电子邮件,你需要配置S
·
2015-10-23 09:18
programming
[翻译]ASP.NET MVC 3 开发的20个秘诀(三)[20
Recipes
for Programming MVC 3]:验证用户输入
议题 在设计的时候要添加验证以保证表单中输入的内容与数据库和模型设计的类型相符。 解决方案 在.NET 4.0的MVC 3中包含新的命名空间DataAnnotations提供了许多有用的元数据属性。为了验证表单的输入,以下的属性类可以提供多种验证方式:RequireAttribute,RegularExpressionAttribute和DataTypeAttribute。当需要定义必须输
·
2015-10-23 09:17
programming
[翻译]ASP.NET MVC 3 开发的20个秘诀(一)[20
Recipes
for Programming MVC 3]:通过密码验证限制访问视图
议题 创建用户必须注册并通过用户名和密码登录才能访问的网站的特定页面。 创建具有权限控制的特定页面,用户必须通过注册并使用用户名和密码登录才能访问。 解决方案 AccountController和AccountModels以及几个验证视图通过Membership和FormsAuthentication来实现创建和验证用户的功能。在ASP.NET中通过AuthorizeAttribute控制
·
2015-10-23 09:17
programming
GNU make manual 翻译(五十一)
继续翻译 When you use the `-t' or `--touch' option (*note Instead of Executing
Recipes
: Instead of
·
2015-10-23 08:37
Make
emacs配置emacs-clang-complete-async
apt-get install llvm-dev sudo apt-get install libclang-dev 网上抄来一个大神的配置 ~/.emacs.d/el-get-user/
recipes
·
2015-10-23 08:53
emacs
找到一个非常好用的Css Parser,和大家分享
是C#写的 原文地址:http://www.codeproject.com/KB/
recipes
/CSSParser.aspx A Quick Note on the Downloads
·
2015-10-22 21:50
parser
GNU make manual 翻译(二十五)
See *note Phony Targets::, and *note Errors in
Recipes
: Err
·
2015-10-21 12:14
Make
GNU make manual 翻译(二十三)
继续翻译 2.5 Letting `make' Deduce the
Recipes
===============================
·
2015-10-21 12:12
Make
GNU make manual 翻译(十四)
These
recipes
say how to update the target file.
·
2015-10-21 12:09
Make
linux -- power-qorp-p1010rdb 编译过程
2010.12-r2/) echo "UBOOT_MACHINE = \"P1010RDB_NAND_config\"" > mycollection/
recipes
·
2015-10-21 11:39
linux
《SQL Server 2008实战》:大概是目前中文T-SQL图书中最优秀的一本
这本书英文名叫“SQL Server 2008 Transact-SQL
Recipes
”,直译过来是《SQL Server 2008 T-SQL秘籍》或《SQL Server 2008
·
2015-10-21 11:01
SQL Server 2008
明年计划
(3)新领域: 进入视频识别领域,推出自己的解决方案 (4)数学: 继续学习多元统计分析,开始学习《Number
Recipes
》,实现上面的主要算法,扩大 Orc.SmartCore 库。
·
2015-10-21 11:11
计划
iOS调试之挂起线程
参考:https://developer.apple.com/library/ios/#
recipes
/xcode_help-debug_navigator/articles/suspending_a_thread.html
·
2015-10-21 10:56
ios
zookeeper学习(Curator客户端)
它有以下三个优点 1.提供了一套非常友好的操作API; 2.提供一些高级特性(包括但不仅限于前篇文章中提到的)的封装 3.易测试 maven依赖如下 org.apache.curator curator-
recipes
liyonghui160com
·
2015-10-14 15:00
zookeeper 初识
Zookeeper代码版本中提供了分布式独享锁,选举,队列的接口,代码在zookeeper的src/
recipes
目录下,其中分布锁和队列有Java和C两个版本
花现_yang
·
2015-08-21 08:00
The model backing the 'ProductContext' context has changed since the database was created. EF6
学习《EntityFramework6
Recipes
2ndEdition》,2-6.SplittinganEntityAmongMultipleTables中遇到几个问题表结构:操作1.构造数据对象publicclassProduct
Lv Jianwei
·
2015-08-17 17:00
Zookeeper开源客户端框架Curator简介与示例
所谓ZooKeeper技巧(ZooKeeper
Recipes
),也可以称之为解决方案,或者叫实现方案,是指ZooKeeper的使用方法,比如分布式的配置管理,Leader选举等 Curator
m635674608
·
2015-08-05 08:00
zookeeper
zookeeper学习之三(Curator客户端)
提供了一套非常友好的操作API;2.提供一些高级特性(包括但不仅限于前篇文章中提到的)的封装3.易测试 maven依赖如下 Xml代码 org.apache.curator curator-
recipes
m635674608
·
2015-08-04 23:00
zookeeper
在Storyboard中为控件添加自定义属性
ios-blog.co.uk/tutorials/user-defined-runtime-attributes/appledeveloperhttps://developer.apple.com/library/mac/
recipes
lavzchen
·
2015-07-29 14:00
CentOS 6.4 搭建git 服务器
此文件是依据markdown所编写,更好效果参见本人github的文档https://github.com/jackliu2013/
recipes
/blob/master/doc/linux/CentOS
jackliu2013
·
2015-07-24 15:00
centos git
1、hamr的安装
HAMRVersionDependencyVersionNotes0.41Java1.7 0.41ApacheZooKeeper3.4.5 0.41ApacheCurator2.4.0curator-client,curator-framework,curator-
recipes
0.41RabbitMQ3.2.3
NB_vol_1
·
2015-06-16 09:00
hamr
centos 6.5安装GitLab全过程和问题记录
官方只提供了Debian/Ubuntu系统下的安装说明文档,如果需要在centos下安装,可以参考这篇:https://github.com/gitlabhq/gitlab-
recipes
/tree/master
jsczxy2
·
2015-06-12 09:00
linux
git
gitlab
centos 6.5安装GitLab全过程和问题记录
官方只提供了Debian/Ubuntu系统下的安装说明文档,如果需要在centos下安装,可以参考这篇:https://github.com/gitlabhq/gitlab-
recipes
/tree/master
jsczxy2
·
2015-06-12 09:00
linux
git
gitlab
zookeeper学习之三(Curator客户端)
它有以下三个优点1.提供了一套非常友好的操作API;2.提供一些高级特性(包括但不仅限于前篇文章中提到的)的封装3.易测试maven依赖如下 org.apache.curator curator-
recipes
闪电
·
2015-06-07 20:00
curator-
recipes
低版本 导致的codis加载异常
org.apache.curator.utils.PathUtils.validatePath(Ljava/lang/String;)Ljava/lang/String;atorg.apache.curator.framework.
recipes
.cache.ChildData
skyernest
·
2015-06-05 14:40
异常
curator-
recipes
低版本 导致的codis加载异常
org.apache.curator.utils.PathUtils.validatePath(Ljava/lang/String;)Ljava/lang/String; at org.apache.curator.framework.
recipes
.cache.ChildData
ernestyoung
·
2015-06-05 14:00
如何成为一名 Java 冠军程序员?
顺带提及,如果你有心思去看其他的东西——我已经开始在 Heinz’s Worst
Recipes
(海因茨最差食谱)上记录我所烹饪过的那些惨不忍睹的食物。
brotherlamp
·
2015-06-01 11:00
java
java教程
java培训
Java视频
Java资料
CentOS6.4 安装gitlab
4gamers.cn/blog/2014/07/15/setup-gitlab-on-aliyun-ubuntu/ gitlab的安装说明https://github.com/lubia/gitlab-
recipes
ly36843
·
2015-05-11 16:37
安装
gitlab
centos6.4
CentOS6.4 安装gitlab
4gamers.cn/blog/2014/07/15/setup-gitlab-on-aliyun-ubuntu/gitlab的安装说明https://github.com/lubia/gitlab-
recipes
ly36843
·
2015-05-11 16:37
安装
gitlab
CentOS6.4
git
CentOS6.4 安装gitlab
4gamers.cn/blog/2014/07/15/setup-gitlab-on-aliyun-ubuntu/ gitlab的安装说明https://github.com/lubia/gitlab-
recipes
ly36843
·
2015-05-11 16:37
安装
gitlab
centos6.4
Zookeeper分布式锁的实现
zookeeper 3.4.6 provided org.apache.curator curator-framework 2.4.2 provided org.apache.curator curator-
recipes
nibilly
·
2015-05-08 23:00
Zookeeper节点监听结合Spring
zookeeper 3.4.6 provided org.apache.curator curator-framework 2.4.2 provided org.apache.curator curator-
recipes
nibilly
·
2015-05-08 15:00
python基于Tkinter库实现简单文本编辑器实例
具体实现方法如下:##{{{http://code.activestate.com/
recipes
/578568/(r1)fromTkinterimport*fromtkSimpleDialogimportaskstringfromtkFileDialogimportasksaveasfilenamefr
feige
·
2015-05-05 12:43
Laravel 各种资源
http://cheats.jesse-obrien.ca/ laravel手册http://laravel-
recipes
.com/https://laracasts.com/http://www.laravel-tricks.com
杨太化
·
2015-05-04 22:00
iOS开发的经典博客和文章汇总【原创】
官方文档苹果官方demo https://developer.apple.com/library/ios/
recipes
/xcode_help-IB_auto_layout/chapters/UnderstandingAutolayout.html
heng615975867
·
2015-04-11 16:00
IOS 定制中间突出UItabBar
网址:https://github.com/boctor/idev-
recipes
/tree/master/RaisedCenterTabBar。
zhenggaoxing
·
2015-03-25 17:00
ios
中间出UITabBar
Zookeeper开源客户端框架Curator简介与示例
所谓ZooKeeper技巧(ZooKeeper
Recipes
),也可以称之为解决方案,或者叫实现方案,是指ZooKeeper的使用方法,比如分布式的配置管理,Leader选举等 Curator
wbj0110
·
2015-03-10 10:00
zookeeper
Zookeeper开源客户端框架Curator简介与示例
所谓ZooKeeper技巧(ZooKeeper
Recipes
),也可以称之为解决方案,或者叫实现方案,是指ZooKeeper的使用方法,比如分布式的配置管理,Leader选举等 Curator
wbj0110
·
2015-03-10 10:00
zookeeper
Zookeeper开源客户端框架Curator简介与示例
所谓ZooKeeper技巧(ZooKeeper
Recipes
),也可以称之为解决方案,或者叫实现方案,是指ZooKeeper的使用方法,比如分布式的配置管理,Leader选举等 Curator
wbj0110
·
2015-03-10 10:00
zookeeper
基于zookeeper、连接池、Failover/LoadBalance等改造Thrift 服务化
主要是客户端,可以从如下几个方面进行:1.服务端的服务注册,客户端自动发现,无需手工修改配置,这里我们使用zookeeper,但由于zookeeper本身提供的客户端使用较为复杂,因此采用curator-
recipes
jianghaolun
·
2015-03-08 10:00
thrift
zookeeper
rpc
负载均衡
java8 新增的@Repeatable注解
packagecom.github.jdk8.ebook.java8_
recipes
2nd_edition; importjava.lang.annotation.Anno
doctor_who2004
·
2015-02-10 09:00
java8
新增的Repeatable注
asset catalog学习笔记
官方文档地址:https://developer.apple.com/library/ios/
recipes
/xcode_help-image_catalog-1.0/Recipe.html#//appl
lihei12345
·
2015-02-08 22:00
zookeeper__leader选举——翻译官方
recipes
文档
zookeeper-3.4.6/docs/
recipes
.html Leader Election A simple way of doing leader election with ZooKeeper
lvdccyb
·
2015-01-31 23:00
zookeeper
leader
election
python 递归实例(recursion in real world using python)
现有数据,结构如下:
recipes
={ 'apple_pie':{ 'ingredients':['flour','sugar','eggs','shortening','apples','cinnamon
bdss58
·
2015-01-29 21:00
Zookeeper 客户端Curator demo
org.apache.zookeeperzookeeper3.4.6org.apache.curatorcurator-test2.5.0org.apache.curatorcurator-framework2.4.2org.apache.curatorcurator-
recipes
2.4.2
zheng_pat
·
2015-01-25 22:00
上一页
7
8
9
10
11
12
13
14
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他