码迷,mamicode.com
首页 >  
搜索关键字:add load    ( 56123个结果
asp.net mvc 对象和集合序列化
private List GetOrganiztions(){var organizations = new List();organizations.Add(new Model.Organization.Organization{Id = "1",Name = "一汽",});organizati...
分类:Web程序   时间:2014-06-28 20:19:29    阅读次数:230
struts2与struts1整合,Unable to load configuration. - interceptor-ref ... struts.xml
struts.xml中为了与struts1的MVC模式整合,需要类似如下的拦截器的引用 ...
分类:其他好文   时间:2014-06-21 13:52:14    阅读次数:252
Assembly.Load未能加载文件或程序集“”或它的某一个依赖项。系统找不到指定的文件
项目采用了三层架构和工厂模式,并借鉴了PetShop的架构,因为这个项目也是采用分布式的数据库,目前只有三个数据库,主要出于提高访问性能考虑。 原来是按照网上对PetShop的介绍来给各项目添加引用的。 1、Web 引用 BLL。2、BLL 引用 IDAL,Model,使用DALFactor...
分类:其他好文   时间:2014-06-21 12:35:02    阅读次数:4639
C# 同步
Interlockedsimplearithmetic operations are not atomic.Interlocked类提供了一个专门的机制用于完成这些特定的操作。这个类提供了Increment、Decrement、Add静态方法用于对int或long型变量的递增、递减或相加操作Inte...
分类:其他好文   时间:2014-06-21 12:06:35    阅读次数:320
ef的常用命令
Enable-Migrations启用Migration数据迁移Add-Migration migrationname添加一个migrationUpdate-Database –TargetMigration:migrationname 回滚到指定数据库Update-Database –Verbos...
分类:其他好文   时间:2014-06-21 11:29:54    阅读次数:214
C/C++ ===复习==函数返回值问题(集合体==网络)
按值传递地址传递:应该明白只有这2种传递,下面讨论函数的按值传递#include #include int add_rtVal(int a,int b){ int c = 0; c = a + b; return c;}int main(int argc,char* argv[])...
分类:编程语言   时间:2014-06-21 09:28:38    阅读次数:267
《JAVA与模式》之迭代器模式
定义:提供一种方法访问一个容器对象中各个元素,而又不暴露该对象的内部细节。类型:行为类模式类图: 1 public static void main(String[] args) { 2 List list = new ArrayList(); 3 list.add(...
分类:编程语言   时间:2014-06-21 08:21:07    阅读次数:230
js ajax 传送xml dom对象到服务器
客户端代码 1 服务器端代码 1 protected void Page_Load(object sender, EventArgs e) 2 { 3 string res; 4 Request.ContentEncoding = ...
分类:Web程序   时间:2014-06-21 07:28:45    阅读次数:187
Php会员权限
ADD>UPD>LIS>DEL> 这里主要使用了二进制的方法 这是一种思路,所以定义常量的时候 必须是2的N次方才行。<?phpdefine('ADD', 1); //1 转化二进制define('UPD', 2); //10define('LIS', 4); //100define('DEL...
分类:Web程序   时间:2014-06-21 06:27:51    阅读次数:326
Spring Tool Suit安装virgo server插件
virgo-tomcat原先是Spring DM Server,后来转eclipse社区维护进入http://wiki.eclipse.org/Virgo/Tooling,有详细说明。Release版:http://download.eclipse.org/virgo/release/tooling...
分类:编程语言   时间:2014-06-21 00:28:19    阅读次数:644
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!