Skip to main content

Home/ Groups/ lzby's group
boho .net

《专栏声音》谁动了我的奶酪? (有感dotNET入世后的Windows developers) - 开发者在线 - www.builder.com.cn - 0 views

  • But here's what Chappell had to say about your experience as a developer: experience is only useful if the future is like the present (yep, another maxim). Naturally, he thinks your experience could prove a detriment if you rely on it too much. So if you're just getting started, you actually may have advantages over the old-timers who come to .NET with their old coding ways and expectations.
boho .net

10 useful jQuery plugins :: ENHANCE - 0 views

  •  
    很酷!
boho .net

Using include files with ASP.NET - 0 views

  • Let’s assume you have a 100 page website. On the bottom of all 100 pages you have secondary navigation, copyright information, and a link to your privacy policy. If we decide to add an additional link to the footer navigation one day, it would really suck to make the update 100 times by copying and pasting code into every file. Luckily, if we use ASP.NET includes, we only need to make the update once.
  •  
    Let's assume you have a 100 page website. On the bottom of all 100 pages you have secondary navigation, copyright information, and a link to your privacy policy. If we decide to add an additional link to the footer navigation one day, it would really suck to make the update 100 times by copying and pasting code into every file. Luckily, if we use ASP.NET includes, we only need to make the update once.
boho .net

InfoQ: 争论:是否应该避免架构重写? - 0 views

  • 回头再看看那个两页长的函数。是的,我知道它只完成了显示窗口这个简单功能,但是它已经增加了一些东西,没有人知道是为什么。好,我来告诉你为什么:它们是对缺陷的修复。[……]
boho .net

Flex明显增长,Silverlight在中国雷声大雨点小 - 孟岩 - CSDNBlog - 0 views

  • Silverlight还在剧烈变化当中,除了技术粉丝之外,实践当中的开发者还不敢把真实产品架构在这款尚未定型的技术上
boho .net

是否会成为问题--Linq to Sql的执行可能无法复用查询计划 - 赵劼 - 51CTO技术博客-领先的IT技术博客 - 0 views

  • 就是这个原因。在使用ADO.NET时,如果SqlParameter的Type是nvarchar,并且没有指定Size属性,则可能就会因为具体参数的尺寸不同而造成查询计划无法复用的结果。这一点,很多人都忽视了。
  • 不过我们还是幸运的,因为我根据我的经验,似乎在查询条件中使用长度不等的字符串作为参数的情况并不多见。不是么?
  •  
    在使用ADO.NET时,如果SqlParameter的Type是nvarchar,并且没有指定Size属性,则可能就会因为具体参数的尺寸不同而造成查询计划无法复用的结果。这一点,很多人都忽视了。
boho .net

Brad Abrams : Visual Studio 2008 and .NET Framework 3.5 "SP1" Beta - 0 views

  • A couple of examples: If you hover over the i in the above example it will tell you i is used before it is set. if you hover over the Foo in the above example it will tell you no such method exists. 
boho .net

jQuery Impromptu - 0 views

  •  
    够用了。
boho .net

firefox扩展开发 | Firefox.hk - 0 views

  •  
    尝试一下firefox的开发。
boho .net

Open Source URL Rewriter for .NET / IIS / ASP.NET » Home - 0 views

  • UrlRewriter.NET is a pure .NET component written in C#, and does not require any ISAPI rewrite dll’s to be installed in IIS. You configure rules in a very readable XML format, either in your web.config file or an external rewriter configuration file.
boho .net

Use image for error display in ASP.Net validators - 0 views

  • Now instead of error message add the image tag as shown below. <img src=alert.gif' style='width:15px;height:15px;'> Note : Image tag doesn't have have an end tag. So don't add. Then in test your page that shows images for errors. See the picture below. Know More: You can also embed sound instead of error message or error image. <asp:RequiredFieldValidator ControlToValidate="TextBox1" EnableClientScript="false" ID="RequiredFieldValidator1" runat="server" Text="<bgsound src='C:\Windows\Media\Windows Error.wav'>"></asp:RequiredFieldValidator> Just make sure that the EnableClientScript="false"  when you want a sound instead of a text message.
boho .net

ASP.NET Ajax 1.0 toolkit : Calendar Extender hide on lost focus - Sashidhar Kokku's blog - 0 views

  • One of the problems with the calendar extender in the 1.0 toolkit is that if I use a button/image to show the calendar, I am forced to click on it again to hide the calendar.
boho .net

InfoQ: 你真的应该再学习一种语言么? - 0 views

  •  
    即使造成很多反对的声音,但争论的话语水准颇高。足以称得上是深层次的探讨。至少比那一大批还在为哪种语言有钱途争得死去活来的人更有资格谈论这个话题。
boho .net

InfoQ: 迈向Data 2.0--学习使用ADO.NET数据服务框架 - 0 views

  • 总的来说,ADO.NET 数据服务框架的目标是为那些公开和使用以数据为中心的服务,创建基于具象状态传输 (REST) 的简单框架。此类服务使用统一的界面公开数据,以供整个企业 Intranet 或 Internet 范围内的所有 Web 客户端使用。该框架由一个服务器库和一组客户端库组成,前者用于将数据作为服务安全公开,后者是为一系列 Microsoft 应用程序和技术(Microsoft? .NET Framework和Silverlight 等)能够使用服务而构建的。
boho .net

Open Source PHP Chart Library: pChart - 0 views

  •  
    很好,生成位图的。
boho .net

InfoQ: AJAX开发者继续向低调(unobtrusive)JavaScript迁移 - 0 views

  • 能够使HTML代码(在这个例子中就是我们的input标签)保持干净,并为开发者提供单一引用点来调试 JavaScript代码。低调JavaScript提倡将代码存储在外部的.js文件中,反对将其嵌入在HTML页面内
boho .net

InfoQ: C#争论:什么时候应该使用var? - 0 views

  • 那么,我的建议是只有当你不知道类型的时候,才使用var。这里是我不同的见解和用法。请看如下代码片断: var procs = from p in ServiceController.GetServices() where p.Status == ServiceControllerStatus.Running select p; procs.ToList().ForEach(p=> Console.WriteLine(p.ServiceName)); procs的类型无疑为IEnumerable<ServiceController>,然而这却与我无关。我首先关注的是procs是一个列表,列表中的每一项都具有一个属性ServiceName。潜在的类型对于编译器很重要,而那些不得不去阅读代码的人们却不是编译器,对吗?
1 - 20 Next › Last »
Showing 20 items per page