Blogroll
- BioTeck.NET
- Calvyn/IT Engineer
- Certless Designer
- Documentation
- Dreamnetworkz
- e-leaguers – Web design
- easy make money online
- Gadget news, Tech blog
- GaryOoi
- GeekAdviser.com
- Heartbeat
- iappsgeek
- increase traffic free
- Jayce Ooi’s Paradise
- PhotoshopSlave
- Plugins
- Portachi web directory
- Pricing Strategies
- Software Tips
- techetron.com
- Themes
- Wordpress Blog Tips
Programming Archive
-
How-to Snippet: SQL Server 2005 Internal error. Buffer provided to read column value is too small.
Posted on June 24, 2011 | No CommentsSome of you may have come across this error message in SQL Server 2005. SQL Server 2005: “Internal error. Buffer provided to read column value is too small. Run DBCC CHECKDB to check for any corruption”. If you run a DBCC CHECKDB, it will return... -
HOW TO: PIVOT in SQL Server 2005 to produce cross tabulation
Posted on June 8, 2011 | No CommentsThere was no easy way to produce a cross tabulation in SQL Server 2000 but in SQL Server 2005, this is achievable using the PIVOT command. Here is a example on how to produce a cross tabulation in SQL Server 2005. In the example below,... -
Quick Guide on Finding Column in a DataRow in C#
Posted on June 2, 2011 | No CommentsWhen working with a DataSet in .NET, you can check if a Data Column contains a certain label. Below is an example I used in my code to check if the column name “quote_id” existed. And if existed, assign the data column value to a... -
.NET Assembly in GAC
Posted on April 6, 2011 | No CommentsAnyone who develops using .NET framework will encounter GAC, Global Assembly Cache. GAC is a shared repository of assemblies (DLL) maintained by the .NET runtime and all shared assemblies must be strongly named. The usual location for a GAC assembly depending on your operating system... -
CodeFile and CodeBehind in .NET: What the heck is the difference?
Posted on March 31, 2011 | No CommentsThe Single-File Page and Code-Behind Page Models The Single-File Page Model Example NewPage.aspx declaration <%@ Page Language=”C#” %> The Code-Behind Page Model Example NewPage.aspx declaration (.NET Framework 3.5) <%@ Page Language=”C#” CodeFile=”SamplePage.aspx.cs” Inherits=”SamplePage” AutoEventWireup=”true” %> NewPage.aspx declaration (.NET Framework 1.1) Difference between CodeFile and CodeBehind...










