ThrowIfMaxHttpCollectionKeysExceeded Exception
In an asp.net application having an HTML form in which a user has option to select objects (e.g in a...
Top 20 Replies by Programmers when their programs don’t work
Top 20 Replies by Programmers when their programs don't work You would definitely agree :)
fatal error C1189: #error : This file requires _WIN32_WINNT to be #defined at least to 0x0500. Value 0x0501 or higher is recommended.
Today i upgraded my Visual Studio 2008 MFC app to Visual Studio 2010 and got the following error message when...
Read all your favorite blogs in one place
I wanted to read all my favorite blogs in one place so i was looking for an online application which...
Running a 32-bit application on 64-bit Windows Server
1. Change build configuration platform to x86 in Visual Studio. Its set to AnyCPU by default 2. Set the application's...
Disallow folders using Robots.txt
User-agent: * Disallow: /folder1/ Disallow: /folder2/ Where folder1 & folder2 are the folders which should be hidden from the search...
Custom 404 Error Page
Set 404 page using .htaccess ErrorDocument 404 /404-error-page.html Change Where 404-error-page.html to your error page
Rounding a number to 2 decimal places in SQL SERVER
Use T-SQL Convert Function. Select convert ( decimal(8,2) , 9.4125 ) Output: 9.41
Formatting DateTime to Date in SQL SERVER
Select convert(varchar(10),GetDate(),101) Output: 04/16/2009 Select convert(varchar(10),GetDate(),103) Output: 16/04/2009