2005年10月12日

VS .NET add web reference

摘要: wsdl 新手问题:用vs.net 2003添加web reference,我在被引用wsdl里面定义的namespace在vs声成的wsdl里面都会被替换成tns.怎么保证vs生成的wsdl能用我原来的namespace?谢谢! 阅读全文

posted @ 2005-10-12 16:19 番茄鸡蛋面 阅读(823) 评论(1) 推荐(0) 编辑

2005年3月31日

Dynamic Link Library DLL

摘要: The following article helps me a lot to understand DLL.http://www.mindcracker.com/mindcracker/c_cafe/dll/dll_tut1l.asp I have distributed this tutorial in three parts. First part will explain basics o... 阅读全文

posted @ 2005-03-31 17:54 番茄鸡蛋面 阅读(1337) 评论(0) 推荐(0) 编辑

2005年3月29日

COM Vs .NET (Qt ActiveQt)

摘要: 这些天在学习Qt的ActiveQt功能,由于对于COM和ActiveX知识的缺乏,虽然读了Qt ActiveQt相关的文档很多遍, 很多的东西的理解都不是很彻底。于是决定补充一下COM的相关知识。 在网上查了相关的书籍,看到潘爱民老师翻译的 Essential COM,评论非常不错,而且我也看过原作者的Essental .NET,感觉确实不错,决定要买。忽然又看到潘老师的自己的著作 COM原理与应... 阅读全文

posted @ 2005-03-29 18:10 番茄鸡蛋面 阅读(2364) 评论(0) 推荐(0) 编辑

2004年11月2日

复习进程和线程 process vs thread

摘要: http://www.vczx.com/tutorial/mfc/mfc8.php进程是一个可执行的程序,由私有虚拟地址空间、代码、数据和其他操作系统资源(如进程创建的文件、管道、同步对象等)组成。一个应用程序可以有一个或多个进程,一个进程可以有一个或多个线程,其中一个是主线程。线程是操作系统分时调度分配CPU时间的基本实体。一个线程可以执行程序的任意部分的代码,即使这部分代码被另一个线程并发地执... 阅读全文

posted @ 2004-11-02 10:57 番茄鸡蛋面 阅读(906) 评论(0) 推荐(0) 编辑

2004年10月20日

Window Firewall cause "MS SQL Server New SQL Server Registeration" and "New ODBC DSN " failure

摘要: Three computers have MS SQL Server 2000 installed.One is Windows 2000 Server ,the other two are Windows XP Professional.The Windows XP Professional can register the MS SQL Server instance on Windows 2... 阅读全文

posted @ 2004-10-20 14:04 番茄鸡蛋面 阅读(598) 评论(0) 推荐(0) 编辑

2004年9月9日

牛人与非牛人的对话

摘要: ----"如果你的应用程序不能正确地运行,不要去责怪操作系统。"2001年,当SUN提出SUN.ONE构架的那一天,XX大学毕业的牛在“牛狼之家”聊天战碰到了一个公司的Coder-------------------------------------------------------------------牛: 你懂XXX协议、YYY框架、ZZZ思想吗coder:稍微知... 阅读全文

posted @ 2004-09-09 14:08 番茄鸡蛋面 阅读(1449) 评论(2) 推荐(0) 编辑

2004年9月8日

Web Accessibility toolbar -- a must-have toolbar for web developer

摘要: Web Accessibility toolbarhttp://www.nils.org.au/ais/web/resources/toolbar/a must-have toolbar for web developer. 阅读全文

posted @ 2004-09-08 14:06 番茄鸡蛋面 阅读(639) 评论(0) 推荐(0) 编辑

好好学习天天向上

摘要: 最近状态一直不好,看来要反省反省了。开发方面,就是些无关痛痒的小项目,而且开发的所谓的模式还在别人的手中掌握,虽然我也提过一些意见,可是没什么成效。我们用的是asp.net,开发工具也是最新的,可是开发模式和过程还是停留在以前asp,php刚兴起的年代的开发模式。让人感觉买了个宝马车,然后把轮子换成自行车的,还洋洋得意。真不明白这些老外。技术总在不断的变化,成熟,再变化。最近一年来,技术的更新比刚... 阅读全文

posted @ 2004-09-08 10:13 番茄鸡蛋面 阅读(700) 评论(0) 推荐(0) 编辑

2004年7月4日

Oracle table problem

摘要: 最近遇到一个奇怪的Oracle问题:Oracle 数据库里面有一个表,在查询表的varchar2类型的column时总是查找不到正常的结果,查询其他类型的column可以返回正常结果。简化的例子如下ID 列的类型为 numberNAME 列的类型为varchar2(10)里面的数据如下:(1,'94'), (2,'94'), (3,'testname')select * from TestTabl... 阅读全文

posted @ 2004-07-04 12:44 番茄鸡蛋面 阅读(1087) 评论(3) 推荐(0) 编辑

2004年6月23日

Oracle - MSSQL Convert Tips (2)

摘要: In the Oracle - MSSQL Convert Tips (1)I already mentioned several tips that used very often.Today's project contains too much views , stored procedures and trigger and the lines of these code are big.... 阅读全文

posted @ 2004-06-23 17:49 番茄鸡蛋面 阅读(952) 评论(0) 推荐(0) 编辑

2004年6月22日

.NET 数据访问体系结构指南

摘要: .NET 数据访问体系结构指南 in MSDN Chinasome tips from this article:无论您使用哪种 .NET 数据提供程序,您都必须始终遵循下列原则: •尽可能晚地打开数据库连接。 •以尽可能短的时间使用连接。 •尽可能早地关闭连接。要保证在方法返回之前关闭连接,请考虑使用下面的两个代码示例中阐明的方法之一。第一个方法使用 fina... 阅读全文

posted @ 2004-06-22 16:46 番茄鸡蛋面 阅读(732) 评论(0) 推荐(0) 编辑

NET Framework Data Providers

摘要: MSDN article NET Framework Data Providers helps us to understand several .NET Framework Data Providers and how to choose a proper Data Provider between.NET Framework Data Provider for SQL Server.NET F... 阅读全文

posted @ 2004-06-22 16:27 番茄鸡蛋面 阅读(737) 评论(0) 推荐(0) 编辑

Links or Postbacks

摘要: ASP.NET: Links are often better than Postbacks by Paul Wilson 阅读全文

posted @ 2004-06-22 13:52 番茄鸡蛋面 阅读(590) 评论(0) 推荐(0) 编辑

2004年6月21日

ASP.NET features we use, ASP.NET experience I have

摘要: 我现在参与的是一个multilingual ,multi-culture 基于web的项目。要满足英语,德语,法语等不同语种和文化客户的需要。数据库要同时满足Oracle和 MSSQL.虽然说我们用了ASP.NET,但是我觉得并不是正宗的ASP.NET我们只用到了其中的几个feature,很多的可以说是ASP.NET精髓的东西都没有用。我们的Leader以前做ASP,PHP的经验比较丰富,所以对A... 阅读全文

posted @ 2004-06-21 17:31 番茄鸡蛋面 阅读(2274) 评论(14) 推荐(0) 编辑

2004年6月20日

Word Note 001

摘要: at the merce of vitaltrialglitchscratchmake the best ofmake the most ofacronym n.首字母简略词antonym n.反义词synonym n.同义词abbreviation : n.缩写词 Jan is the abbrevation of Januaryfraud: n欺骗欺诈petition: n.请愿书facult... 阅读全文

posted @ 2004-06-20 08:58 番茄鸡蛋面 阅读(651) 评论(0) 推荐(0) 编辑

2004年6月19日

Skype 0.98.0.28 release!

摘要: Skype 0.98.0.28 release!Major new features: Preparations for SkypeOut Emoticons in Messages Avator browserFull list: http://www.skype.com/help_releasenotes.html 阅读全文

posted @ 2004-06-19 20:14 番茄鸡蛋面 阅读(573) 评论(0) 推荐(0) 编辑

I can't agree more

摘要: I can't agree more!翻译成中文为我非常同意,同意得不能再同意了。想查这个费了几个周折,先是用几个Machine Translator,都翻译的不好。然后金山词霸也不行。Google英文搜索不行,中文就找到了洪恩在线。 阅读全文

posted @ 2004-06-19 14:20 番茄鸡蛋面 阅读(2110) 评论(1) 推荐(0) 编辑

2004年6月18日

Skype Skype Skpe

摘要: a very cool tool . 阅读全文

posted @ 2004-06-18 23:58 番茄鸡蛋面 阅读(3514) 评论(1) 推荐(0) 编辑

Getting Your Résumé Read

摘要: By Joel Spolskyhttp://www.joelonsoftware.com/articles/ResumeRead.html IfoundtheaboveartilewhenIsurftheskype.comjobopenningspage.theyrecommendthispagetocheckfortipsbefoesendingresume.Thetipsarereallyhe... 阅读全文

posted @ 2004-06-18 23:49 番茄鸡蛋面 阅读(530) 评论(0) 推荐(0) 编辑

在行进中开火 Fire and Motion By Joel Spolsky

摘要: By Joel Spolskyhttp://www.joelonsoftware.com/articles/fog0000000339.html http://chinese.joelonsoftware.com/Articles/FireAndMotion.html 在行进中开火。说的不错,万变不离其宗,很多时候我们不能被太多的新技术迷惑甚至压倒。踏踏实实的学点实实在在的东西才是硬道理。 阅读全文

posted @ 2004-06-18 23:47 番茄鸡蛋面 阅读(655) 评论(0) 推荐(0) 编辑

Nothing is simple as it seems

摘要: By Joel Spolskyhttp://www.joelonsoftware.com/articles/NothingIsSimple.html http://chinese.joelonsoftware.com/Articles/NothingSimpleSeems.html yes,事情往往没有想象的那么简单,事情比想象的复杂的多,或者说繁琐的多。所以一定要三思而后行,先设计,再写程序。前... 阅读全文

posted @ 2004-06-18 23:45 番茄鸡蛋面 阅读(735) 评论(1) 推荐(0) 编辑

10个必备.NET 工具

摘要: Ten Must-Have Tools Every Developer Should Download NowThis article discusses: NUnit to write unit tests NDoc to create code documentation NAnt to build your solutions CodeSmith to generate code FxCop... 阅读全文

posted @ 2004-06-18 22:47 番茄鸡蛋面 阅读(825) 评论(0) 推荐(0) 编辑

Oracle - MSSQL Convert Tips (1)

摘要: These days I participate a project to convert sql statements between Oracle and MSSQL and learn a lot.1.Autoincreamentcolumn Issuesqlserver:whencreatetabledefinethiscolumn property identity(0,1)oracle... 阅读全文

posted @ 2004-06-18 17:43 番茄鸡蛋面 阅读(2061) 评论(2) 推荐(0) 编辑

Some Articles Help You To Understand ASP.NET ViewState

摘要: AlistofgoodarticlestohelpunderstandASP.NETViewStateViewState: All You Wanted to KnowViewState and JavaBeanThe ASP.NET Alternativepart give us a overview of how ViewStae worksTaking a Bite Out of ASP.N... 阅读全文

posted @ 2004-06-18 17:22 番茄鸡蛋面 阅读(1050) 评论(1) 推荐(0) 编辑

Learn SQL Join,Inner Join, Outer Join

摘要: For Example:Table A have 12( 8+4) entries, 8 entries have valid relation with BTable B have 80(77+3) entries , 77 entries have valid relation with A.then the return amount of join is :cross join : 12*... 阅读全文

posted @ 2004-06-18 15:10 番茄鸡蛋面 阅读(4521) 评论(2) 推荐(0) 编辑

IeHttpHeaders

摘要: http://www.blunck.info/iehttpheaders.html ... A good IE plug in tool to trace http header . 阅读全文

posted @ 2004-06-18 15:10 番茄鸡蛋面 阅读(755) 评论(0) 推荐(0) 编辑

Top Ten Tips for Programming ASP.NET

摘要: Moredetailsinhttp://www.ondotnet.com/pub/a/dotnet/2002/04/22/asptips.html ToptentipsforprogrammingASP.NET1.UseVisualStudio.NET,butdonotusedefaultnamesforanythingexcepttrivialornon-referencedobjects.2.... 阅读全文

posted @ 2004-06-18 15:10 番茄鸡蛋面 阅读(639) 评论(0) 推荐(0) 编辑

Test Driven Development && NUnit

摘要: http://nunit.org TestDriverDevelopment(TDD)isapopularwordtheseday.It'sprincipalis"testfirst".Sinceisamethod,ithasrules.Infact,wealreadyusethismethodbutnotsostricttoobeytherulesanddidn'tusesometoolslik... 阅读全文

posted @ 2004-06-18 15:10 番茄鸡蛋面 阅读(769) 评论(0) 推荐(0) 编辑

Three/Multi Tier/Layer Architecture/Design

摘要: More details Areminderon"Three/MultiTier/LayerArchitecture/Design"broughttoyoubymylatenightfrustrations.MY COMMENTWhatmattersisthatyouhavealreadyadoptitinyourpractice,notjustunderstandthetheory,orthin... 阅读全文

posted @ 2004-06-18 15:10 番茄鸡蛋面 阅读(719) 评论(0) 推荐(0) 编辑

Skype updated, My Picture avator

摘要: coolpictures,alsocoollogohttp://www.skype.com/download_avatars.html 阅读全文

posted @ 2004-06-18 15:10 番茄鸡蛋面 阅读(628) 评论(0) 推荐(0) 编辑

导航