Socket长连接与短连接
摘要:短连接是面向需要是才建立,完成了即断开,下次再需要时再连接。而长连接是客户端即使目前没有需要收发数据也连接着。
阅读全文
posted @
2008-12-21 14:14
一路前行
阅读(2573)
推荐(0) 编辑
SQLServer2005发布订阅(转)
摘要:SQL Server 2005相对于SQL Server 2000来说,无论是性能还是功能都有一个相当大的提高,甚至可以用“革命”来形容这一次升级。SQL Server 2005使 SQL Server 跻身于企业级数据库行列。在数据高可用性方面,SQL Server 2005为用户提供了数据镜像、复制、故障转移群集、日志传送功能。本文向读者简单介绍SQL Server 2005复制功能。 一、复...
阅读全文
posted @
2008-12-18 00:45
一路前行
阅读(1378)
推荐(0) 编辑
SQL2005数据库置疑解决方案
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--//SingleMdf为数据库名称 --①设置数据库为可更新状态 use master go sp_configure 'allow updates',1 go reconfigure with ov...
阅读全文
posted @
2008-12-10 18:09
一路前行
阅读(829)
推荐(0) 编辑
发布时用直接用源文件部署
摘要:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
阅读全文
posted @
2008-12-10 16:43
一路前行
阅读(228)
推荐(0) 编辑
C#文件和文件夹操作
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->//1.文件夹创建、移动、删除--------- //创建文件夹 Directory.CreateDirectory(Server.MapPath("a")); Directory.Create...
阅读全文
posted @
2008-12-10 00:17
一路前行
阅读(2287)
推荐(0) 编辑
Ext与Jquery的整合
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> Div Content
阅读全文
posted @
2008-12-07 23:12
一路前行
阅读(624)
推荐(0) 编辑
C#判断程序是否运行
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Windows.Forms; using System.Diagnost...
阅读全文
posted @
2008-12-01 18:18
一路前行
阅读(2405)
推荐(0) 编辑
App.Config 操作类
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; using System.Xml; namespace D...
阅读全文
posted @
2008-12-01 16:55
一路前行
阅读(536)
推荐(0) 编辑
WinForm遍历控件
摘要:foreach (Control ctrlSingle in this.Controls) { if (ctrlSingle is RadioButton) { if (ctrlSingle.Text == strDeviceType) { (ctrlSingle as RadioButton).Checked = true;...
阅读全文
posted @
2008-12-01 16:14
一路前行
阅读(465)
推荐(0) 编辑