Home » Archive

Articles Archive for December 2008

Programming / Coding »

[13 Dec 2008 | No Comment | 4,740 views]

While working on a new project I got into this. I have to have a background on top and also at the bottom of the page. Nothing too difficult. Only problem was making it work on all browsers. On some browsers it seem to show the background color at the bottom instead of re-rendering the bottom to the browser window bottom. So this is what I came up with seem to work on all major browsers.

Programming / Coding »

[5 Dec 2008 | 3 Comments | 1,753 views]

I have seen this problem with quite a few forums using vBulletin. V7N Forums ,Digitalpoint Forum are two for example. If you type in the url without www, they don’t redirect to www version of the url. For example if you type in http://v7n.com/forums it stays like that. But the problem happens when the forum url is set as www version; all the urls are set with a www.

Programming / Coding »

[4 Dec 2008 | No Comment | 520 views]

I was working on calling a MS SQL stored procedure from a .NET application. Then I got this error “the Size property has an invalid size of 0″.

Technology »

[4 Dec 2008 | No Comment | 649 views]

Many of us have unused domains. We buy them, let them sit doing nothing pointing to a default parked page or redirecting to another existing website we have.
Is it the right approach for aging unused domains? Answer is no. So how you properly do that?

Make a simple website. Wordpress blog or similar are easy to install. Or you may have a generic template for a website you can use.
Throw in a few pages of unique content.
Get few backlinks. Directory submission and social networking site submission are easiest approaches.

Getting backlinks is …

Programming / Coding »

[3 Dec 2008 | 3 Comments | 2,107 views]

if you place a div with margin-bottom:20px; IE would not show the margin at all if you do not flush the div to the bottom of the document(when content filled).

Programming / Coding »

[3 Dec 2008 | No Comment | 345 views]

The min-height property sets the minimum height of an element.

But problem is min-height does not work with IE! But it does with other browsers. So your css with min-height would not be browser independent, unless you take care of it.