Raj Kaimal
If it ain't broke, make it better.
-
.NET Framework Libraries Source Code - License - MS-RL
When I first read Scott's post, I missed the Microsoft Reference License (Ms-RL) which the .net Framework libraries is released under.
-
.NET Framework Libraries Source Code
Scott just announced that his team will be releasing the souce code to the .NET base class libraries, ASP.net, Windows Forms and WPF!
-
SQL 2005 - Maximum number of characters displayed in each column
This setting in Microsoft SQL server management studio, which has a default setting of 256 characters, caused me to waste almost half an hour yesterday. I was looking in the wrong places trying to troubleshoot my stored procedure and wondering why my data was being truncated. There is no indication in management studio that the text was being truncated either.
-
Building an RSS feed using LINQ to XML and LINQ to SQL
Version : VS 2008 Beta 2
In this post, I am going to show you how to build a RSS feed of the employees in the NorthWind database using LINQ. Before you proceed, you may want to read Scott's introduction of LINQ to XML over here if you haven't done so already. -
Using the ListView in tiled mode (Part 2) - CSS layout
-
Using the ListView control in Tiled mode (Part 1)
Version : VS 2008 RTM
-
LinqDataSouce - DataItem in code behind
Version : Visual Studio 2008 Beta 2
-
Dynamic String based Queries in LINQ - Dynamic Expression API
Version: Visual Studio 2008 Beta 2
-
VS TS 2008 Beta 2 - TFS Client & WDP 2008
Note that Visual Studio Team Suite 2008 Beta 2 does not come with the TFS (Team Explorer) 2008 client or Web Deployment Projects.
-
Limiting the length of a multiline textbox
Limiting the length of an ASP.net mulitline textbox control is easy. Add a RegularExpressionValidator, set the ControlToValidateProperty to the ID of the TextBox you wish to validate and set the ValidationExpression property to :
^[\s\S]{0,300}$