posted @ 2004-06-21 18:47 Cure 阅读(1410) 评论(0) 推荐(0) 编辑
摘要:
Resharp is an add-in for Visual Studio .NET 2003 that brings intelligent C# code editing, highlighting and refactoring features to Visual Studio. ReSharper aims to provide C# developers with the same... 阅读全文
摘要:
在论坛里看到有人问如何在指定窗体上查找一个控件,很多回答都是使用foreach循环,实际上是不确切的。当你要查找的控件放在一个GroupBox或panel上,用foreach是不够的,还要递归private void GetFlexGrid(Control ctrl) { foreach ( Control c in ctrl.Controls ) { if ( c is Flex... 阅读全文
posted @ 2004-06-17 09:09 Cure 阅读(4177) 评论(11) 推荐(0) 编辑
摘要:
编辑器的新特点http://www.c-sharpcorner.com/Code/2004/June/VS2005Editor.asp重构可是现在的大热门,2005也已经加入了自动重构工具:http://www.c-sharpcorner.com/Code/2004/June/Refactoring.asp期待ing 阅读全文
posted @ 2004-06-17 08:55 Cure 阅读(600) 评论(0) 推荐(0) 编辑
摘要:
代码仅仅是说明问题,和实际的有所不同在项目开发过程中,有这样的需求:定义一个查询窗体使用DataGrid显示列表双击Grid后打开指定记录的编辑页面,窗体类为FormSearchEntity于是这么写了private void Grid_DoubleClick(object sender,System.EventArgs e){ string entityID = 双击记录的ID字段值; /... 阅读全文
posted @ 2004-06-14 20:09 Cure 阅读(1240) 评论(2) 推荐(0) 编辑
摘要:
主要使用系统的API函数,重载窗体的WndProc方法,处理WM_DRAWCLIPBOARD和WM_CHANGECBCHAIN消息 http://www.developer.com/net/csharp/article.php/3359891 阅读全文
posted @ 2004-06-14 19:25 Cure 阅读(740) 评论(0) 推荐(0) 编辑
摘要:
http://www.devx.com/security/Article/20898/0/page/1讲了跨站点脚本,sql注入,加密用户信息,验证输入等八个要点 阅读全文
posted @ 2004-06-13 11:38 Cure 阅读(702) 评论(0) 推荐(0) 编辑
摘要:
昨天逛书店,看到一本书《C#编程思想》,有《C++编程思想》和《Java编程思想》的名气在先,想来这本也不弱,拿起来一看,呵,作者是从来没听说过的什么一个工作室,哪里是Bruce Eckel。对这种欺世盗名之辈,大家一起骂死他。提醒大伙儿不要上当 阅读全文
posted @ 2004-06-10 17:12 Cure 阅读(1190) 评论(4) 推荐(0) 编辑
摘要:
IIs创建虚拟目录http://www.eggheadcafe.com/articles/20040112.asp 把两个表绑定到一个datagrid里http://datawebcontrols.com/faqs/CustomizingAppearance/CombiningTwoFieldsIntoOneColumn.shtml 弹出日历:http://authors.aspalliance.... 阅读全文
posted @ 2004-06-08 19:03 Cure 阅读(1541) 评论(3) 推荐(0) 编辑