Home » Archive

Articles in the General Category

Advertising / Marketing, General, Making Money »

[13 Mar 2010 | No Comment | 21 views]

People sell their products in different ways. Some sell on their very own e-commerce website, some on shopping comparison sites, some on ebay, amazon etc.

Here is a short list of some major places you can sell your products. Remember this is not an elaborated talk on them.

General »

[4 Mar 2010 | One Comment | 73 views]

I had this e-commerce website Shopping Cosmo developed few months back. Had big plans selling lot of stuffs and make tons of money
So check out the site http://www.shoppingcosmo.com/

General »

[14 Feb 2010 | No Comment | 101 views]

Often times you might need to read a file from another website server. For example reading a inventory data file from a vendor website. Here is a sample code to achieve that.

General, Programming / Coding »

[22 Jan 2010 | No Comment | 190 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.

General, Technology »

[22 Jan 2010 | No Comment | 254 views]

If you have a dedicated server and you need to add an additional ip address, first thing to do is request for the additional ip address from the hosting company. Often time they would not hook it with your server, they would just give it to you.

General »

[21 Jan 2010 | No Comment | 160 views]

I guess with all good comes bad. My problem is before I monetize the websites well I jump into another business idea comes in mind.

General »

[20 Jun 2009 | No Comment | 971 views]

You may have Button, DropDownList etc controls in a Repeater/DataList that generates an Event. From those event handlers how do you find other controls inside the Repeater/DataList, in case you need the values from other controls.

General »

[19 Jun 2009 | No Comment | 1,482 views]

I have a client I was building an e-commerce website for. I was developing the website on MS SQL 2005 Database, but their deployment server have MS SQL 2000. From experience I knew there are some stuffs that would not work in MS SQL 2000, so I avoid them. This one missed my eyes. I get this error message on the search results page:

The text, ntext, and image data types are invalid in this subquery or aggregate expression.

General »

[15 Jun 2009 | No Comment | 2,557 views]

Can we use CASE statement in a where clause? Answer is yes.

General »

[10 Jun 2009 | No Comment | 1,649 views]

I have two css classes like this:
.folderTextON,a.folderTextON:active,a.folderTextON:link,a.folderTextON:visited {color:#fff;font:bold 10px/12px Verdana,Arial;text-decoration: none;}
a.folderTextON:hover         { text-decoration: none; color: #FFFFFF; }
.folderTextOFF,a.folderTextOFF:active,a.folderTextOFF:link,a.folderTextOFF:visited {color:#AD9596;font:bold 10px/12px Verdana,Arial;text-decoration: none;}
a.folderTextOFF:hover         { text-decoration: none; color: #fff; }
I also have LinkButton like this:
<asp:linkbutton id=”linkbtn” CssClass=”folderTextOFF” Runat=”server”>A Link Button</asp:linkbutton>
On code behind I tried to set the css class like this:
linkbtn.CssClass=”folderTextOn“;
This does not not work. On any browser at all. The class code and all others are ok.Whats the problem?
Problem is the CssClass I assigned did not have ON all uppercase as I defined on the style. Modifying that this works:
linkbtn.CssClass=”folderTextON“;
Apparently on code …