Programming / Coding »

[18 Sep 2009 | No Comment | 1,270 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….

Read more...

Programming / Coding »

[16 Sep 2009 | No Comment | 1,699 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.

Read more...

Programming / Coding »

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

How To Start / Stop MS SQL Server 2005

Read more...

Programming / Coding »

[27 Aug 2009 | No Comment | 1,379 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 …

Read more...

Programming / Coding »

[7 Aug 2009 | 2 Comments | 2,684 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?

Read more...

Programming / Coding »

[23 Jul 2009 | No Comment | 1,317 views]

How do you check the version of IIS on the server of a website?

Read more...

Programming / Coding »

[17 Jul 2009 | No Comment | 1,136 views]

Often times you might need to use a asp .net variable within javascript code. How you do that?

Read more...

Programming / Coding, Technology »

[5 Jul 2009 | 2 Comments | 1,339 views]

I was working with the Paypal sandbox to test a Paypal application for a client. I was using IPN for the payment notification from PayPal so I could update member record on database. While testing I was getting the payment_status value Pending.

Read more...

General »

[20 Jun 2009 | No Comment | 976 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.

Read more...

General »

[19 Jun 2009 | No Comment | 1,497 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.

Read more...