客户端 HTML 1 2 服务端 H.ashx 1 2 3 using System; 4
using System.Web; 5 6 public class H : IHttpHandler { 7 8 public void
ProcessRequest (HttpC...
分类:
Web程序 时间:
2014-05-23 23:47:10
阅读次数:
499
设置归档模式(mount状态)ALTER database
ARCHIVELOG;//关闭数据库shutdown immediate//启动数据库到mount状态startup mount alter database
archivelog;//查看归档状态archive log list;SQL>...
分类:
数据库 时间:
2014-05-23 23:45:05
阅读次数:
441
原文:http://www.cnblogs.com/peace-lee/p/3586350.html昨天遇到一个比较奇怪的问题,运行VS2010调试程序的时候,总是会报一个错,然后程序就挂掉了:无可用源….,弹出一个窗口提示:System.AccessViolationException:
Atte...
分类:
数据库 时间:
2014-05-23 22:18:37
阅读次数:
465
题目:Given two binary trees, write a function to
check if they are equal or not.Two binary trees are considered equal if they are
structurally identical...
分类:
其他好文 时间:
2014-05-23 12:40:21
阅读次数:
352
http://www.codeproject.com/Articles/746191/SQLite-Helper-CsharpThis small class
(SQLiteHelper.cs) is built on top of System.Data.SQLite.DLL. A referen...
分类:
数据库 时间:
2014-05-23 12:08:00
阅读次数:
558
public void uploadLocalFileToServer(String
uploadFileName){ String AutomationPath = System.getProperty("user.dir"); String
filePath=AutomationPath+".....
分类:
其他好文 时间:
2014-05-23 12:00:15
阅读次数:
502
C#中查询字符串中是否包含指定字符/串,使用IndexOf还是Contains?这是一个很常见的命题,以前也没有注意,今天QQ群里有人提起,于是就做了下试验,代码如下:using
System;using System.Diagnostics;namespace ConsoleApplication...
分类:
其他好文 时间:
2014-05-23 11:50:40
阅读次数:
270
为啥图形窗口接口要称为 X 呢?因为就英文字母来看 X 是在W(indow)
后面,因此,人们就戏称这一版的窗口接口为 X ,有下一版新窗口之意X系统由3个相关的部分组合起来的。 服务端(Server)
Server是控制显示器和输入设备(键盘和鼠标)等硬件的软件。它负责检测具体那个设备有什么...
总结以下三种方法,实现c#每隔一段时间执行代码:方法一:调用线程执行方法,在方法中实现死循环,每个循环Sleep设定时间;方法二:使用System.Timers.Timer类;方法三:使用System.Threading.Timer;123456789101112131415161718192021...
分类:
编程语言 时间:
2014-05-23 11:10:18
阅读次数:
379
using System;using
System.Collections.Generic;using System.IO;using System.Linq;using
System.Reflection;using System.Runtime.InteropServices;namespace...
分类:
其他好文 时间:
2014-05-23 10:59:24
阅读次数:
223