jQuery Crash Course
For those who would like to learn more about jQuery, one of the more popular JavaScript libraries, here’s a crash course written with code-savvy Web designers in mind. (more…)

For those who would like to learn more about jQuery, one of the more popular JavaScript libraries, here’s a crash course written with code-savvy Web designers in mind. (more…)
For kicks I thought I would create a rough Custom Profile Provider using LINQ To SQL since I was creating a custom profile provider for an application today anyway ( not using LINQ To SQL ). In the end, I think using LINQ To SQL is overkill for a custom profile provider that would be better served with a couple of stored procedures if using a database. It did make for some interesting playing. Read more… (more…)
I’ve spent much of the past few months getting to grips with WPF. I’m still nowhere near the point where I can claim to be expert in this great new technology, but I thought it might help others if I blogged links to resources that I have found to be particularly helpful.
I’m sure I will add to this list as time goes on, but (in no particular order) here are some links that I’m sure you will find useful if you are just starting out with WPF.
Jessica Fossler wrote a handy transition guide for WinForms (more…)
Online gambling casino Bodog s recent struggle holds lessons for SEOs. When 1st Technology slapped the Antigua-based company with a patent infringement lawsuit it sparked a fight that is still going on. And it forced Bodog to answer the question what do you do when you lose your domain …
Get your FREE 30 day VMware Workstation trial Now! Virtualize your desktop today with VMware Workstation. (more…)
I have a web directory, and under the subcategories I want to show:
subcategory (# of links) (# of subcategories)
The script I have is using the following code, but all it will show is the number of links in brackets, it won’t show the subcategories as well ex: (1) (3)
Here is the code:
while($subcategory = mysql_fetch_assoc($subcat)){
//fetch children
$sql = "select * from pages where active = ‘Yes’ and catID = ‘" . $subcategory[’id’] . "’";
//ec (more…)