- 博客(53)
- 资源 (2)
- 收藏
- 关注
原创 百度地图封装js
var DEF_PI = Math.PI; // 3.14159265359var DEF_2PI = 2 * Math.PI; // 6.28318530712var DEF_PI180 = Math.PI / 180.0; // 0.01745329252var DEF_R = 6370996.81; // radius of earthfunction initMap(map
2018-05-19 16:13:33 1252
原创 用VS2010中的wsdl外部工具生成web service代理类
wsdl /l:cs /out:c:/RealTimeService.cs http://localhost:5555/AQMReportsAspx/RealTimeData.asmx?wsdl
2018-05-19 16:12:53 702
转载 linux重启和关闭系统命令
重启命令:1、reboot2、shutdown -r now 立刻重启(root用户使用)3、shutdown -r 10 过10分钟自动重启(root用户使用)4、shutdown -r 20:35 在时间为20:35时候重启(root用户使用)关机命令:1、halt 立刻关机2、poweroff 立刻关机3、shutdown
2017-07-19 00:17:48 296
转载 CentOS 7 关闭图形界面
查看默认的target,执行:systemctl get-default 开机以命令模式启动,执行:systemctl set-default multi-user.target 开机以图形界面启动,执行:systemctl set-default graphical.target
2017-07-19 00:12:24 455
转载 详细设计文档
原地址:http://blog.csdn.net/vbloveshllm/article/details/22284669如何写详细设计文档是一个很头疼的话题,简单的说是需求文档的升华,也可以说是开发人员开发程序的依据,当然根据详细设计文档的粒度进行。好的详细设计文档是需求人员和开发人员之间的桥梁,不过目前好多程序开发都是先开发后,然后为了应付审核,公司制度,文档规范,开发完成后后续补
2015-05-20 23:47:48 701
转载 “无法加载一个或多个请求的类型。有关更多信息,请检索 LoaderExceptions 属性 “之解决
原地址:http://www.cnblogs.com/zeroone/p/3639561.html“无法加载一个或多个请求的类型。有关更多信息,请检索 LoaderExceptions 属性 “之解决今天在学习插件系统设计的时候遇到一个问题:“System.Reflection.ReflectionTypeLoadException: 无法加载一个或多个请求的类型。
2015-05-06 23:33:18 2159 1
原创 让WCF只需要配置服务地址
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;using System.ServiceModel;using System.Configuration;using System.ServiceModel.D
2015-05-06 23:12:13 780 1
原创 WSDL生成web service代理类的命令
wsdl /l:cs /out:c:/RealTimeService.cs http://localhost:5555/AQMReportsAspx/RealTimeData.asmx?wsdl
2015-03-18 13:31:30 442
原创 百度地图距离计算,计算结果和调用百度的api一样
var DEF_PI =Math.PI;// 3.14159265359var DEF_2PI =2 *Math.PI;// 6.28318530712var DEF_PI180 =Math.PI/ 180.0;// 0.01745329252var DEF_R =6370996.81;// radius of earth// 利
2015-02-12 22:58:46 1341
原创 WCF分布式框架
为了减少WCF中服务端和客户端繁琐的配置,我利用C#编写代码的方式自动生成服务端,自动产生客户端的方式,不多说,直接上传效果图:1.服务端架构2.客户端架构3.物理目录这里就不上传代码了。
2015-02-12 22:49:08 759
转载 Hashtable和Dictionary区别
转载地址: 1:多线程程序中推荐使用 Hashtable, 默认的 Hashtable 允许单线程写入, 多线程读取, 对 Hashtable 进一步调用 Synchronized() 方法可以获得完全线程安全的类型. 而 Dictionary 非线程安全, 必须人为使用 lock 语句进行保护, 效率大减.2:单线程程序中推荐使用 Dictionary, 有泛型优势, 且读取速度
2014-09-23 09:12:26 416
转载 内存数据库Mongodb在NET中的应用示例
using MongoDB;using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threadin
2014-09-07 23:51:02 368
转载 Mongodb的配置
1.下载mongodb的windows版本,有32位和64位版本,根据系统情况下载,下载地址:http://www.mongodb.org/downloads2.解压缩至D:/mongodb即可3.创建数据库文件的存放位置,比如D:/mongodb/data/db。启动mongodb服务之前需要必须创建数据库文件的存放文件夹,否则命令不会自动创建,而且不能启动成功。默认文件夹路径为c:/d
2014-09-07 23:50:09 356
转载 http://blog.csdn.net/hsg77/article/details/7284135
http://blog.csdn.net/hsg77/article/details/7284135
2014-09-02 13:05:46 351
转载 .net,C#,Ftp各种操作,上传,下载,删除文件,创建目录,删除目录,获得文件列表等
转载:http://blog.csdn.net/feng2375/article/details/1923163 .net,C#,Ftp各种操作,上传,下载,删除文件,创建目录,删除目录,获得文件列表等using System;using System.Collections.Generic;using System.Text;using System.Ne
2014-09-02 12:33:39 509
转载 使用jQuery查找父元素或父节点的方法
转载 一、获取父元素: id="one" style="position:relative;"> id="two">hello id="three" style="position:relative;"> href="#">tonsh 1、parent:取得一个包含着所有匹配元素的唯一父元素的元素集合。 $("a
2014-08-19 10:19:25 3413
原创 带缩放和移动的图片显示类
//----------------------------------------------------------------------------// Copyright (C) 2004-2013 by EMGU. All rights reserved. //------------------------------------------------
2014-08-14 07:13:23 623
原创 两点画圆
float cx = StartPointF.X + (e.X - StartPointF.X) / 2; float cy = StartPointF.Y + (e.Y - StartPointF.Y) / 2; float r = (float)Math.Sqrt(Math.Po
2014-08-04 14:03:47 621
转载 WCF服务在IIS发布时遇到的一些配置问题
http://mikecaodan.cnblogs.com/ Q:>C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets (1578,5): 警告 MSB3270: 所生成项目的处理器架构“MSIL”与引 用“Oracle.DataAccess, Version=4.112.3.0, Cul
2014-07-31 10:31:40 1124
转载 Jquery CheckBox、 RadioButton、 DropDownList取值赋值代码
随便jquery越来越受用户欢迎,它的功能也越来越多使用起来也方便了不少,下面我们介绍的是Jquery CheckBox、 RadioButton、 DropDownList取值赋值实例,有需要的朋友可以参考一下。以下Jquery代码适query1.4版本以上。1.获取选中值,三种方法都可以:$('input:radio:checked').val();$("input[type=
2014-07-22 10:20:26 464
原创 在图片添加旋转的水印文字
/// /// 在图片添加旋转的水印文字 /// /// 文件路径 /// 源图片名称 /// 目标图片名称 /// 水印文字内容 /// 水印文字字体大小 /// 水印文字透明度 /// 水印文字颜色 /// 旋转角度 /// 返回目标图片全路径 public string
2014-04-23 17:32:52 1498
原创 多次写文字到图片上的水印效果
/// /// 在图片上添加水印文字 /// /// 源图片文件 /// 需要添加到图片上的文字 /// 字体大小 /// 文字离左边的距离 /// 文字离上边的距离 /// 透明度 /// 文字颜色 /// 文件路径 /// 是否保存 /// 保存文件名称 ///
2014-04-23 10:36:30 518
原创 把js文件嵌入cs文件所在的dll
1.cs文件代码using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.ComponentModel;using System.Da
2014-04-22 16:28:08 431
原创 Jquery dialog
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml"> $(function () { $("#dialog").dialog(); });
2014-04-18 14:59:59 500
原创 Jquery进度条
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml"> body { font-size:12px;} .ui-progressbar { position:
2014-04-18 14:58:50 425
转载 客服弹出页
1.js var InterTime = 1;var maxWidth = -1;var minWidth = -152;var numInter = 8;var BigInter;var SmallInter;function Big() { var o = document.getElementById('luoye'); var i = p
2014-02-24 17:40:46 523
原创 序列化和反序列化方法
#region 序列化和反序列化 /// /// 反序列化方法 /// /// 反序列化对象类型 /// 反序列化字符串或者xml文件路径 /// public static T Desrialize(string xml)
2014-02-14 17:09:56 454
原创 简单Remoting例子
参考MSDN给出的例子 包含Remoting两种协议(tcp,http)的代码,其中在RemoteObject类添加数据访问的代码,则可实现NET Framwork间的简单分布式数据库程序。 1.服务端:using System;using System.Collections.Generic;using System.Linq;using System.
2014-02-11 16:21:41 656
原创 对象和集合与Json之间的转换,DataTable和DataSet转换为Json
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Collections;using System.Reflection;namespace Common{ public class
2014-02-11 15:55:24 645
转载 图片水印
转载地址:http://blog.csdn.net/wonsoft/article/details/4136711 /* * Class:WaterImage * Use for add a water Image to the picture both words and image * 2007.07.23 create the file * * http://
2014-02-08 17:34:04 564
原创 WCF简单三层框架
1.总体预览2.WCF.Contract层类IArea:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.ServiceModel;using System.Data;using Model;namespace WC
2014-02-08 16:02:10 1234
转载 DataTable转List
稍加改动: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Collections;using System.Reflection;namespace Common{ pu
2014-02-08 15:19:36 486
原创 生成二维码--支持中文,web和winform均可调用
using System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.IO;using ThoughtWorks.QRCode.Codec;using ThoughtWorks.QRCode.Codec.Data;using System.Tex
2014-01-29 16:00:15 867
原创 Ping的用法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net.NetworkInformation;using System.Globalization;namespace PingClient{ public class P
2014-01-29 12:04:56 674
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人