• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

风语者

风中我低语,愈远愈清晰
  • 博客园
  • 联系
  • 管理

公告

1 2 下一页

2005年9月30日

一些杂项资料

摘要: 最近找到的一些资料一个开源的winform控件包http://www.sellsbrothers.com/tools/genghis/一个不错的Winform开发FAQhttp://www.syncfusion.com/FAQ/WindowsForms/Default.aspx一个有意思的个人化查询引擎http://www.rollyo.com/实现了多人异地在一个网页上协同办公http://ww... 阅读全文

posted @ 2005-09-30 15:26 风语者 阅读(931) 评论(0) 推荐(0)

2005年8月30日

今天遇到的一个奇怪的vb.net问题

摘要: 事情是这样的,我写了一个类MyCollection继承自System.Collection.CollectionBase类,CollectionBase类里有方法RemoveAt和OnRemove,它们的定义如下: Public Overridable Sub RemoveAt( ByValIndex As Integer ) Implements IList.RemoveAt Protected... 阅读全文

posted @ 2005-08-30 10:38 风语者 阅读(1222) 评论(3) 推荐(0)

2005年8月29日

asp.net页面请求实现过程

摘要: 我们知道一个“asp.net”程序在IIS中以一个HttpApplication的实例来运行,客户端提交request,则它开始工作,一个request从发出到结束的整个过程如下,它经过了若干的步骤,了解这些过程的先后顺序对开发和测试都有一定的帮助。 HttpApplication Page Control BeginRequest AuthenticateRequest ... 阅读全文

posted @ 2005-08-29 14:11 风语者 阅读(1817) 评论(3) 推荐(0)

2005年8月26日

中国人的成功十要

摘要: 一表人材:一个人长成什么样是父母给的。18岁之前不要挑剔自己的长相,不要对美有固定的标准。别用第一印象去论定别人,但别人却用第一印象来论断你。不管父母生我什么样,我要让别人很乐意跟我交朋友。“要使自己从内心来改变外貌”。  18岁以前不要介意自己的长相。  不要对美有固定的标准。  使自己从内心来改变外貌。一表人材的最终目的是:将自己练成一个强有力的磁铁,吸引许多人来和你在... 阅读全文

posted @ 2005-08-26 17:45 风语者 阅读(605) 评论(1) 推荐(0)

《.net组件开发第2版》下载

摘要: 新加入了.NET2.0的内容。 下载第一部分 下载第二部分 阅读全文

posted @ 2005-08-26 17:40 风语者 阅读(1821) 评论(8) 推荐(0)

IE7.0(beta)可以下载了

摘要: 新特性包括 1.动态安全保护的加强 2.增强的设计使每天的工作更加容易和快速 3.新增加的RSS相关功能 4.增强对CSS和PNG的支持 下载地址http://www.soft32.com/download_997.html 阅读全文

posted @ 2005-08-26 09:01 风语者 阅读(833) 评论(1) 推荐(0)

Google Talk中的小秘密

摘要: 很多人包括我都已装上了google talk了,但是否注意到about里的一行灰色数字呢?如下图 "play 23 21 13 16 21 19 . 7 1 13 5"中的数字对应相应的字母,比如1代表a,26代表z 所以翻译后是“play wumpus.game”,而确实有一个wumpus.game网站,可以用google搜一下。 据说将wumpus.game@gmai... 阅读全文

posted @ 2005-08-26 08:43 风语者 阅读(634) 评论(1) 推荐(0)

2005年8月25日

今天的microsoft,明天的google

摘要: Gmail、Google Desktop Search 、google earth、google map、google talk...看看这些软件和服务,在加上在业界遥遥领先的Google Search。Google公司的触角越伸越多,步子越来越大,在这个互联网的时代,google的每一步都那么迷人,我想他的目标是要做互联网时代的统治者,就像微软做桌面时代的统治者。 在这个时代微软就像他的名字一样... 阅读全文

posted @ 2005-08-25 11:03 风语者 阅读(1749) 评论(14) 推荐(0)

2005年8月22日

C# 代码标准 .NET2.0版(七)Security 编码指导方针

摘要: 1.Always demand your own strong name on assemblies and components that are private to the application, but are public (so that only you can use them):public class PublicKeys{ public const string MyCom... 阅读全文

posted @ 2005-08-22 17:22 风语者 阅读(1036) 评论(0) 推荐(0)

C# 代码标准 .NET2.0版(六)Remoting 编码指导方针

摘要: 1.Prefer administrative configuration to programmatic configuration.2.Always implement IDisposable on single-call objects.3.Always prefer a TCP channel and a binary format when using remoting, unless ... 阅读全文

posted @ 2005-08-22 17:21 风语者 阅读(1147) 评论(0) 推荐(0)

C# 代码标准 .NET2.0版(四)多线程编码指导方针

摘要: 1.Use synchronization domains. Avoid manual synchronization, because that often leads to deadlocks and race conditions.2.Never call outside your synchronization domain.3.Manage asynchronous call compl... 阅读全文

posted @ 2005-08-22 17:20 风语者 阅读(1262) 评论(0) 推荐(0)

C# 代码标准 .NET2.0版(五)序列化Serialization 编码指导方针

摘要: 1.Prefer the binary formatter.2.Mark serialization event-handling methods as private.3.Use the generic IGenericFormatter interface.4.Always mark non-sealed classes as serializable.5.When implementing ... 阅读全文

posted @ 2005-08-22 17:20 风语者 阅读(1007) 评论(0) 推荐(0)

C# 代码标准 .NET2.0版(三)项目设置和结构

摘要: 1.Always build your projects with Warning Level 4 2.Treat warnings as errors in the Release build (note that this is not the default of Visual Studio). Although it is optional, this standard recommend... 阅读全文

posted @ 2005-08-22 17:19 风语者 阅读(826) 评论(0) 推荐(0)

C# 代码标准 .NET2.0版(二)编码惯例和约定

摘要: 1.Avoid putting multiple classes in a single file.2.A single file should contribute types to only a single namespace. Avoid having multiple namespaces in the same file.3.Avoid files with more than 500... 阅读全文

posted @ 2005-08-22 17:18 风语者 阅读(1098) 评论(0) 推荐(0)

C# 代码标准 .NET2.0版(一)命名和风格

摘要: 1.Use Pascal casing for type and method names and constants:public class SomeClass{ const int DefaultSize = 100; public SomeMethod( ) {}}2.Use camel casing for local variable names and method argument... 阅读全文

posted @ 2005-08-22 17:15 风语者 阅读(996) 评论(0) 推荐(0)

2005年7月13日

一些很少用到但还不错的Html功能

摘要: 1.为下拉列表的内容分组 使用OPTGROUP为<select>中的<option>分组,不过只有IE6支持,如下例 你最喜欢的球队 <SELECT> <OPTGROUPLABEL="西班牙"> <OPTION>巴塞罗那</OPTION> <OPTION>皇家马德里</OPTION> <OPTIO... 阅读全文

posted @ 2005-07-13 16:29 风语者 阅读(1198) 评论(5) 推荐(0)

常见程序进程(转载)

摘要: absr.exe 进程文件: absr or absr.exe 进程名称: Backdoor.Autoupder Virus 描述: 这个进程是Backdoor.Autoupder后门病毒程序创建的。 是否为系统进程: 否 acrobat.exe 进程文件: acrobat or acrobat.exe 进程名称: Adobe Acrobat 描述: Acrobat Writer用于创建PDF文档... 阅读全文

posted @ 2005-07-13 16:09 风语者 阅读(1173) 评论(0) 推荐(0)

2005年7月11日

Google提供的好工具

摘要: 最近使用了Google提供的 Google earth- 一款3D的地球表面浏览察看的软件,除了惊叹还是惊叹,无论是功能、速度、效果都远超其它的同类软件,而且还有收费的 Google earth pro,肯定会更强。到http://earth.google.com/index.html去看一下,下载一个玩一下。联想到Google提供的map功能,这些免费提供的或者收费很低的服务肯定会让其它的相关软... 阅读全文

posted @ 2005-07-11 16:37 风语者 阅读(782) 评论(0) 推荐(0)

2005年7月8日

关于Response.ContentType

摘要: 我们知道Response.ContentType属性指定服务器响应的 HTTP 内容类型,默认为 text类型的HTML格式文件。除了text他还支持image、audio、video、application等类型。其中application支持的文档见下面链接:http://www.mhonarc.org/archive/html/mhonarc-commits/2002-09/msg00079... 阅读全文

posted @ 2005-07-08 15:52 风语者 阅读(1343) 评论(0) 推荐(0)

合并数据记录的问题

摘要: 在开发的一个HIS(医院信息系统)系统中,遇到了这样一个需求:系统可以将多次注册的病人记录合并为一条,如果发现有误还可以再分开。这是因为理想化下同一个病人在系统中只能有一个全局病人ID存在,但是由于实际操作和其它原因可能会造成一个病人多次来医院看病多次注册而产生多个全局病人ID的现象出现,这种情况会对将来病人的病史统计以及医院的信息管理带来麻烦,因此系统要提供合并记录的功能,实际上是合并ID的功能... 阅读全文

posted @ 2005-07-08 14:51 风语者 阅读(1840) 评论(7) 推荐(0)

1 2 下一页
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3