Home » Archive

Articles Archive for Year 2008

Programming / Coding »

[13 Dec 2008 | No Comment | 11,291 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 | 4,254 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 | 1,614 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 | 2,672 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 | 5 Comments | 11,480 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 | 1,304 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.

Programming / Coding »

[25 Nov 2008 | No Comment | 4,158 views]

So how you loop through querystring in asp .Net?

Programming / Coding »

[17 Nov 2008 | No Comment | 546 views]

The error occurs when a JavaScript code block is placed in the head of MasterPage. Place the code block in a contentplaceholder to resolve the issue.

Programming / Coding »

[6 Oct 2008 | No Comment | 406 views]

Simply put this in a html/aspx file and run. It will show you all the .net versions installed.

Programming / Coding »

[6 Oct 2008 | No Comment | 407 views]

You may get a Page cannot be found message when you browse aspx pages in a Windows Server 2003 environment.
That is because in Windows 2003, all the webservice extensions are “Prohibited” by default to ensure security.
To resolve this, do the following steps:-
1. From your Run command, type inetmgr and press enter.
2. Expand the appropriate nodes in the IIS to locate the “Webservice Extensions” Node
3. Click on the same.
4. You will find a list of “prohibited” extensions in the right.
5. Click on ASP.NET and “allow” it
That should resolve this issue.
If ASP …