摘要: 这两天学习了MVC和MSMQ架构,MVC是Application_Start的RegisterRoutes方法,通过路由映射的方式进行工作。MVC学习地址:http://www.cnblogs.com/zhangziqiu/archive/2009/02/27/ASPNET-MVC-1.html。举个例子,访问地址http://localhost:34856/Announce/release/,这个url有2级,第一级是Announce,第2级是Release。通过解析这个Url找到对应的路由规则,满足规则,找到控制层的AnnounceControl类+第2级的Release页面;不满足规则, 阅读全文
posted @ 2013-02-18 15:43 chinaagan 阅读(458) 评论(0) 推荐(1) 编辑
摘要: 背景是结算员通过BI、report下载商旅机票现付订单的结算数据,然后人工计算返利。通过该项目可以1)从大系统导入现付机票订单 2)对导入的订单根据规则自动计算返利。项目技术使用有VS2010,SqlServer2008,JobWS,基于SOA的WebService和对原有的SSIS包进行改造。项目的前期有我们3个人开发,主要技术难点1. SOA接口,接口是大系统组的人提供,本身有不稳定的因素2. JobWS技术应用,接口1查询前两天的订单列表。接口2查询每个订单的详细记录。把符合条件记录放入到List的内存中,对List进行循环,1)通过订单号查询其他的一些字段信息2)调用SP保存订单记录3 阅读全文
posted @ 2013-02-07 13:33 chinaagan 阅读(743) 评论(0) 推荐(0) 编辑
摘要: JS调用goole地图,调用了http://ditu.google.com/maps/api/js?sensor=true,源码如下:<!--调用谷歌地图js,zoom缩放倍数,center中心,mapTypeId地图类型--><script type="text/javascript" src="http://ditu.google.com/maps/api/js?sensor=true"></script> <script language="javascript"> var geo 阅读全文
posted @ 2013-02-01 16:42 chinaagan 阅读(846) 评论(0) 推荐(0) 编辑
摘要: 这两天,编码做了一个新蛋网手机信息的采集,web页面信息采集是用WebClient控件。需要调用方法Gather()。希望能有帮助。代码如下:/* * Created By ChinaAgan 2012-1-18 * */using System;using System.Collections.Generic;using System.Text;using System.Collections;using System.Net;using System.IO;using System.Text.RegularExpressions;using CnBlogCollector.Proper.. 阅读全文
posted @ 2012-01-18 10:14 chinaagan 阅读(495) 评论(3) 推荐(1) 编辑
摘要: 今天帮一位新同事配置.net环境,报这个错。Could not load file or assembly 'System.Runtime.Serialization, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The module was expected to contain an assembly manifest. google上没有找到原因,郁闷了很久。后来在博客园找到了给力贴,先查看了IIS的配置,是2.0.50727版 阅读全文
posted @ 2012-01-11 21:51 chinaagan 阅读(739) 评论(0) 推荐(0) 编辑
摘要: 转载地址:http://blog.csdn.net/zheng_/archive/2010/03/04/5344472.aspxusing System;using System.Collections.Generic;using System.Text;using System.Threading;using System.Reflection;namespace TestAssembly{ p... 阅读全文
posted @ 2010-09-13 16:26 chinaagan 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 引用:http://www.cnblogs.com/qingteng1983/archive/2010/07/25/1784528.html 看看兄弟们在项目中用了几项? 阅读全文
posted @ 2010-08-19 10:42 chinaagan 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 2010-8-19,做了个多线程的案例。有单件模式的多线程(方法:InstanceSingleTon)和计数的多线程(方法:Count)。代码比较简单,主要是code单件模式,多线程同步,异步的概念。贴代码如下:class Program { static void Main(string[] args) { Thread[] threads = new Thread[10]; for (int ... 阅读全文
posted @ 2010-08-19 09:58 chinaagan 阅读(1021) 评论(2) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2010-08-13 09:50 chinaagan 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2010-08-12 16:18 chinaagan 阅读(5) 评论(0) 推荐(0) 编辑