摘要:
前前后后收到过一些学生的来信,询问ASP.NET的学习顺序问题,在此就向打算系统学习ASP.NET技术的初学者谈谈我的建议。如果你已经有较多的面向对象开发经验,跳过以下这两步:第一步 掌握一门.NET面向对象语言,C#或VB.NET。 我强烈反对在没系统学过一门面向对象(OO)语言的前提下去学ASP.NET。 ASP.NET是一个全面向对象的技术,不懂OO,那绝对学不下去!第二步 对.NET F... 阅读全文
随笔档案-2008年06月
C# EXcel
2008-06-19 15:39 by BeautyLogic, 257 阅读, 收藏,
摘要:
public class ImportExportToExcel { private string strConn ; private System.Windows.Forms.OpenFileDialog openFileDlg=new System.Windows.Forms.OpenFileDialog(); private System.Windows.Forms.SaveFileDia... 阅读全文
c# Word
2008-06-19 14:43 by BeautyLogic, 358 阅读, 收藏,
摘要:
namespace ImportExportToOffice { using System; using System.ComponentModel; using System.Data; using System.Windows.Forms; public class ImportExportToWord { private Wo... 阅读全文
[转]几篇关于算法方面书的书评
2008-06-12 09:20 by BeautyLogic, 531 阅读, 收藏,
摘要:
几篇关于算法方面书的书评 算法之美 Algorithms的评论 ***** 这是本很新的书,06年末发行,07年才慢慢出现于人们的视野。我在08年初得知这本书,那会我还很奇怪:都什么年月了,怎么还有人写算法教材——这么“经典”的工作,不是上个世纪就被人做完了吗。 读了这本Algorithms,我才知道:这才是我心中的算法书,我等待这样一本书已经很多年了。它的确当得起这个名字。 书... 阅读全文
[转]算法之美
2008-06-07 15:49 by BeautyLogic, 267 阅读, 收藏,
摘要:
【转自douban】 这是一本书的名字,在Amazon.com的售价为27.0美元。 这是本很新的书,06年末发行,07年才慢慢出现于人们的视野。我在08年初得知这本书,那会我还很奇怪:都什么年月了,怎么还有人写算法教材——这么“经典”的工作,不是上个世纪就被人做完了吗。 读了这本Algorithms,我才知道:这才是我心中的算法书,我等待这样一本书已经很多年了。它的确当... 阅读全文
ibm systemx3650 安装 OS
2008-06-04 13:17 by BeautyLogic, 992 阅读, 收藏,
摘要:
所支持的服务器版本: IBM eServer xSeries 100 (8486) IBM eServer xSeries 206 (8482, 8487) IBM eServer xSeries 206m (8485, 8490) IBM eServer xSeries 225 (8647, 8649) IBM eServer xSeries 226 (8648, 8488) IBM ... 阅读全文
[转] 命令行停止和启动iis和sqlserver
2008-06-01 14:56 by BeautyLogic, 236 阅读, 收藏,
摘要:
用命令行停止和启动iis和sqlserver做成批处理可以方便使用 停止 net stop iisadmin /y //会自动停止www、ftp和smtp服务 net stop mssqlserver 启动 net start iisadmin net start W3SVC net start MSFtpsvc net start mssqlserver 阅读全文
[转]SqlDataReader转换到DataSet
2008-06-01 14:16 by BeautyLogic, 1040 阅读, 收藏,
摘要:
(1) DataReader转为DataSet的类: private DataSet DataReaderToDataSet(IDataReader reader) { DataTable table = new DataTable(); int fieldCount = reader.FieldCount; ... 阅读全文
[转]Support for Reflector 5.0 in TestDriven.NET 2.3
2008-06-01 02:36 by BeautyLogic, 293 阅读, 收藏,
摘要:
转载于:http://weblogs.asp.net/nunitaddin/archive/2007/02/20/support-for-reflector-5-0-in-testdriven-net-2-3.aspx Lutz Roeder has just announced the release of .NET Reflector 5.0! This is a signifi... 阅读全文
[转]从reflector实现看.net的混淆与反混淆技术
2008-06-01 01:54 by BeautyLogic, 3240 阅读, 收藏,
摘要:
标 题: 从reflector实现看.net的混淆与反混淆技术【原创】 作 者: dreaman 时 间: 2006-12-31,13:07 链 接: http://bbs.pediy.com/showthread.php?t=37217 【文章标题】: 从reflector实现看.net的混淆与反混淆技术 【文章作者】: dreaman 【作者邮箱】: dreaman_163@163.com ... 阅读全文