Home » Archive

Articles in the Programming / Coding Category

Programming / Coding, Technology »

[15 Mar 2010 | No Comment | 150 views]

UDF (user defined function) to strip off html tags from a string in MS SQL.

General, Programming / Coding »

[22 Jan 2010 | No Comment | 211 views]

If you like to apply multiple styles on the single element, all you have to do is separate the style names by a space.

Programming / Coding, Technology »

[22 Jan 2010 | No Comment | 299 views]

When you design database tables care should be taken selecting the type of integer columns. If you predict there is chances to have big numbers on the integer column, consider bigint or int accordingly.

Programming / Coding »

[13 Jan 2010 | No Comment | 358 views]

I have two backgrounds for a page; one on left side, another on the right side. Both repeat vertically.

Programming / Coding »

[11 Jan 2010 | No Comment | 331 views]

I wanna create a two column layout using CSS. Both clumns would have equal height. This is how we can do it

Programming / Coding »

[18 Sep 2009 | No Comment | 1,285 views]

If you are adding Page Method on your ASP .Net page and you see this compile error: the type or namespace name ‘webmethod’ could not be found….

Programming / Coding »

[16 Sep 2009 | No Comment | 1,715 views]

So you need to truncate the log files often to keep the log file smaller in size. The process I am demonstrating here is for MS SQL 2008.

Programming / Coding »

[15 Sep 2009 | No Comment | 1,041 views]

How To Start / Stop MS SQL Server 2005

Programming / Coding »

[27 Aug 2009 | No Comment | 1,389 views]

I amĀ  not a Php programmer, these days I work with Asp .Net. However I used to work with Php in the past, and that gives me some edge working with simple php stuffs these days for clients, in case I need to.
One of my clients asked to do a visitor counter for them. Looking at the options it could be done in many ways e.g. file based, mySql based etc. To keep it simple I developed a file based version of the visitor counter for the client.
We had to …

Programming / Coding »

[7 Aug 2009 | 2 Comments | 2,698 views]

Asp .Net pages need a form tag to have the cool Asp .Net controls working. What if you wanna have div with 100% height?