摘要:
转自:http://blog.csdn.net/Knight94/archive/2006/08/24/1111267.aspxC#是一门支持多线程的语言,因此线程的使用也是比较常见的。由于线程的知识在Win32编程的时候已经说得过多,所以在.Net中很少介绍这部分(可能.Net不觉得这部分是它所特有的)。那么线程相关的问题大致有如下四类(这篇文章只讨论单线程、单线程与UI线程这两方面的问题)。问... 阅读全文
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System; using System.Net; using System.IO; using System.Text; using System.Net.Sockets; usi... 阅读全文
摘要:
1.临时表 表名#temp if object_id('tempdb.#temp') is not null select 'exist' 2.普通表 表名Temp if exists(select * from sysobjects where id = object_id(N'[dbo].[Temp]') and OBJECTPROPERTY(id, N'IsUser... 阅读全文
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->class Test { /// /// 应用程序的主入口点。 /// [STAThread] static void Main(string[] ... 阅读全文
摘要:
select convert(char(10),getdate(),120) 阅读全文
摘要:
多线程操作一般是由主窗体启动子线程操作的.但在子窗体怎样刷新主窗体的显示信息.问题就出在子线程怎样调用主线程中的对象方法以及保持主窗体正确显示(单线程操作中有可能主窗体界面无法正常刷新).在启动子线程构造函数中传递主窗体对象.在子线程需要调用主线程的方法时使用Control.Invoke(System.Delegatemethod,Object[]args)即可解决.下例为执行FTP下载的实例.代... 阅读全文
摘要:
declare @d datetime set @d=getdate() --执行你的语句 --ex:exec Test 100,200 select datediff(ms,@d,getdate()) 阅读全文
摘要:
转自:孟子e章upload.aspx:[代码]upload.aspx.cs[代码] 阅读全文
摘要:
转自:Ansel's Blog一.Windows服务介绍: Windows服务以前被称作NT服务,是一些运行在Windows NT、Windows 2000和Windows XP等操作系统下用户环境以外的程序。在以前,编写Windows服务程序需要程序员很强的C或C++功底。然而现在在Visual Studio.Net下,你可以运用C++或Visual C#或Visual Basic.Net很... 阅读全文
摘要:
[代码] 阅读全文