in

ASP.NET Weblogs

This Blog

Syndication

ASP.NET Chinese Blogs

August 2006 - Posts

  • NBear官方MSN群

    欢迎加入NBear官方MSN群: nbeargroup@hotmail.com (将该帐号加为MSN好友即可加入组群) Teddy's Knowledge Base 2006-08-31 13:01 发表评论 Read More...
  • 跟踪ASP.NET ActionPack/SubSonic

    ASP.NET ActionPack被作者 重新命名为SubSonic - The Zero Code DAL (亚音,零编码数据访问层)。 因为Castle/Rails界的反应( 1 , 2 ),作者也意识到原来的名字有点误导。新名字来自2个作者最喜爱的乐队, Sublime 和 Sonic Youth 。 在Ruby On Rails里,ActionPack实现了MVC中的View和Controller,而ASP.NET ActionPack实际上是类似ActiveRecord,实现了Model这部分(scaffolding控件除外)。 weblogs.asp.net的 Jon Galloway 是如此地喜欢SubSonic,甚至 建议微软应该把SubSonic和Atlas一起发行 。 另外,SubSonic1.0.1支持 Enterprise Library 和 MySQL。 Read More...
  • 【上海】网络游戏公司招聘ASP.NET程序员

    公司名称:上海麦格特尔网络科技有限公司(Magic Grids., Ltd.) 公司业务:网络游戏开发运营 办公地址:宜山路829号(近桂菁路桂林路) 总机号码:64959196 Job Requirements: - university degree, major in IT - 1+ years of experience on web development - Practiced in ASP.NET (c#) and related MS visual studio development tools. - Practiced in SQL Server 2000 DBMS and related DTS, stored procedures, TSQL technologies. - Familiar with .Net Remoting, Web Service, ORM architecture etc. - Familiar with Html, Xml, Css, JavaScrip, Xmlhttp, atlas etc. - Excellent organizational with good documentations, and problem solving skills. - ASP.NET 2.0 experience is a an advantage (公司将来的平台是.NET2.0) (虽然招聘要求是英语但是对英语不作要求) 论实力谈工资,也欢迎新手、应届毕业生来投简历。 公司刚开不久,对于新手能学到东西,对于高手也会有发展空间。 简历发到我邮箱 zhuye@magicgrids.com lovecherry 2006-08-30 16...
  • OpenSource 的 Free是自由 非免费

    摘要: 在Csdn上看到一篇新闻开源软件新模式:免费软件不免费 ,文中一直在描述这样的概念“免费”,而没有说明Free这个词的真正含义。 开源(OpenSource)起源于自由软件“Free software”。这也是大部分人第一次听说词组“Free Software”的时候,它们会下意识地认为这个软件是免费的。在这个词组中,与软件连用的单词“free”是指“自由”---其含义是复制、修改和发行这个软件是自由的。原则上说,这些方面的自由意味着对源代码的同等接触。 阅读全文 。 自由、创新、研究、探索…… 2006-08-28 20:33 发表评论 Read More...
  • 同一个联盟,同一个梦想!

    摘要:微软 .NET 俱乐部是由微软支持的,由广大对微软产品和技术感兴趣的软件开发人员自发组成的民间组织。旨在为在微软产品技术方面有共同兴趣爱好的技术开发人员提供线上线下的技术经验交流的机会,快速解决广大开发人员在产品开发过程中遇到的障碍,分享在不同行业的案例和项目实施经验,提升在产品开发方面的技术技能。今年,全国各地的微软 .NET 俱乐部将联合起来,形成强大 .NET 俱乐部联盟,人心聚合,资源共享,为每个俱乐部会员提供更多有价值的信息和帮助。 阅读全文 。 xlzhu 2006-08-28 17:43 发表评论 Read More...
  • NBear - 支持基于操作符重载的强类型Where及OrderBy查询

    摘要:从v2.2.1版起,NBear开始支持强类型的实体查询语法。例如,我们可以以如下的语法查询需要的数据: LocalUser[] users = gateway.Select (_Entity.LocalUser.Id > 5 | _Entity.LocalUser.LoginId == "teddy", _Entity.LocalUser._OrderBy.Id_Desc & _Entity.LocalUser._OrderBy.LoginId); 阅读全文 。 Teddy's Knowledge Base 2006-08-27 22:15 发表评论 Read More...
  • Treating HTML like XML using HtmlAgilityPack, and doing it inside of an XSLT too [转载]

    I was not able to post this on Simon Mourier's blog due to the HTML and XSLT tags, so here it is on mine: Maybe someone has done this already, but I don't see it in the comments. I created an XSLT extension object based on HtmlAgilityPack. The class is tiny: using System; using System.Collections.Generic; using System.Text; using HtmlAgilityPack; using System.Xml; using System.Xml.XPath; using System.IO; namespace HtmlAgilityPack { public class XslExtension { public XmlDocument loadhtmlasxml(string url) { // Create an instance of the HtmlWeb object HtmlWeb web = new HtmlWeb(); // Declare necessary stream and writer objects MemoryStream m = new MemoryStream(); XmlTextWriter xtw = new XmlTextWriter(m,null); // Load the content into the writer...
  • Split方法的使用问题

    String.Split 方法 :标识此实例中的子字符串(它们由数组中指定的一个或多个字符进行分隔),然后将这些子字符串放入一个 String 数组中。 Regex.Split 方法 :在由正则表达式匹配项定义的位置将输入字符串拆分为一个子字符串数组。 上面的两个Split方法,在使用单字符拆分字符串的时候效果一样。然而在使用多个字符拆分字符串时,就有所区别了: Srting.Split(字符串.ToCharArray())得到的结果往往不是我们希望的结果。所以在此推荐使用 Regex.Split方法 处理使用多字符拆分字符串。 Read More...
    Posted Aug 26 2006, 11:45 PM by QIHANGNET
    Filed under:
  • Spanned Monitors

    Compared with my desktop ( screen ) this morning... It's a big jump for me - at least, the displays are consolidated (spanned). :o) Colt Kwong Share this post: Email it! | bookmark it! | digg it! | reddit! Read More...
  • PC Conslidation

    I don't know why my desk is so messy and I can never make it clean & tidy! All mouse, keyboard, power cord... blah blah mixed together... Fortunately, I have ONE Usb thumb to store everything centrally. I have to check or upgrade my MaxiVista...
More Posts Next page »