-
[C#]统计在线人数
摘要:引用地址:http://zkxp.cnblogs.com/archive/2006/03/31/363438.html前几天在做论坛统计在线人数时,对在线人数统计相关技术做了一些了解.找到了一篇不错的文章,里面包含的代码已经足以应付一般统计的功能.我在页面检测的地方使用了Ajax无刷新技术,并且给文章提供的类增加了在线用户位置的统计,下一篇文章我会把涉及到的技术和代码贴出来,下面现看一下原文章的内...
阅读全文
-
让winform的关闭x按钮处于不可用
摘要:添加对using System.Runtime.InteropServices的引用 [ DllImport ( "USER32.DLL" ) ]public static extern int GetSystemMenu(int hwnd, int bRevert);[ DllImport ( "USER32.DLL" ) ]public static extern int RemoveMenu...
阅读全文
|