Unknown Recipes
Sign in
|
Join
Home
Contact
RSS
Atom
Search
Tags
Active Directory
ADO.NET
ASP.NET
General
Linq
MSBuild
SQL Server
WCF
WPF
Sponsors
advertise here
News
Navigation
Home
Blogs
Archives
March 2011 (1)
February 2011 (1)
October 2010 (1)
September 2010 (1)
July 2010 (1)
May 2010 (3)
March 2010 (1)
August 2009 (1)
July 2009 (2)
June 2009 (1)
May 2009 (1)
April 2009 (4)
March 2009 (1)
January 2009 (2)
August 2008 (1)
March 2008 (1)
February 2008 (1)
January 2008 (1)
December 2007 (1)
November 2007 (1)
October 2007 (6)
September 2007 (3)
September 2007 - Posts
3
Comments
Using IValueConverter to format binding values in WPF
by
marianor
First we need implement the value converter, to accomplish this we need to create a new class that implements System.Windows.Data.IValueConverter, this interface works only for simple binding. If you need to use multi binding you will need implement System...
Filed under:
WPF
Comments
How to do virtual paging with ASP.NET, AJAX and SQL Server 2005
by
marianor
This sample provides a way to avoid full postback of the page, just updating the grid that contains the data. The first step is create the stored procedure, for that I will use CTE (Common Table Expressions), which is a new feature of SQL Server 2005...
Filed under:
ADO.NET
,
ASP.NET
,
SQL Server
2
Comments
Parsing SQL Like to avoid overloads SQL Server
by
marianor
When using Stored Procedures or embeds SQL in a query generally we forget about parse the parameters where a Like condition is present. The are two possible wildcards for the LIKE function in SQL Server, that are _ (underscored), that replaces a character...
Filed under:
ADO.NET
More Posts