注:第一次写博客,把自己遇到的问题和收集的资料记录在博客上。在开发.NET应用中,使用
System.Drawing.Image.Save 方法而导致“GDI+ 中发生一般性错误”的发生,通常有以下三种原因:1.
相应的帐户没有写权限。解决方法:赋予 NETWORK SERVICE 帐户以写权限。2...
分类:
其他好文 时间:
2014-05-05 21:40:45
阅读次数:
318
方法1 .1在开始运行输入regedit打开注册表
2.定位到HKEY_LOCAL_MACHINE------SYSTEM------ControlSet001-------Control-------
GraphicsDrivers-------Configuration ...
分类:
其他好文 时间:
2014-05-04 11:50:46
阅读次数:
246
首先要添加引用System.Runtime.Serialization.public
class JSONHelper{ public static string Serialize(T obj) {
System.Runtime.Serialization.Json.Da...
分类:
Web程序 时间:
2014-05-04 11:27:29
阅读次数:
382
using System.Collections.Generic;using
System.Collections.Specialized;using System.Linq;using System.Web;using
System.Text;using System.Web.Mvc;using ...
分类:
Web程序 时间:
2014-05-03 23:02:35
阅读次数:
492
一、接口那点事儿 (1)什么是接口? 一组函数成员而未实现的引用类型。只有类和结构能实现接口。
(2)从IComparable接口看接口实例:
假设有如下一段代码,它使用Array类的一个静态方法Sort对一个未排序的int类型数组进行排序,并输出排序后的结果。using System;cl...
分类:
其他好文 时间:
2014-05-03 22:20:59
阅读次数:
462
一,Persistent Connection 示例教程
1,实现服务器端代码
1),编写服务器 PersistentConnection 代码
项目中 SignalR 目录下创建 PersistentConnection.cs 文件
using System;
using System.Collections.Generic;
using System.T...
分类:
Web程序 时间:
2014-05-03 22:03:28
阅读次数:
349
首先看下面这个例子
public static void main(String[] args) {
ArrayList al1 = new ArrayList();
al1.add(1);
ArrayList al2 = new ArrayList();
al2.add("hello");
//int型链表和string型链表,结果为true
System.out.p...
分类:
编程语言 时间:
2014-05-03 22:02:53
阅读次数:
376
[root@server254java]#vimOstrich.java//注意文件名必须是这个,因为下面代码中只有Ostrich是public修饰符。我们要明白public的含义classBird
{
publicvoidFly()
{
System.out.println("IambirdIcanfly");
}
}
publicclassOstrichextendsBird
{
publicvoidFly()
{
System.out.p..
分类:
编程语言 时间:
2014-05-03 20:47:18
阅读次数:
366
2014年5月1日是劳动节,是劳动人民应该休息的节日,呵呵结果这几天却是作死的节奏,天天加班到2点半,真实很辛苦呀,整个过程很艰辛但是结果是好的。1、配置LC1600链路负载均衡,首先要激活license的。在system-license-Reactivacte2、要创建VLAN,由于是联通线路、电信线路和..
分类:
其他好文 时间:
2014-05-03 20:45:55
阅读次数:
322