March 2007 Entries

Useful quick reference guides

While strolling through some of my RSS feeds on Monday I came across a few quick reference guides which are worthy of mention. They're things which you might not have an immediate need for, but that are bound to come in handy at some point in the future. HTTP/1.1 (DELETE, GET, HEAD, PUT, POST) This is an activity diagram to describe the resolution of the response status code, given various headers. Useful for anyone doing application debugging at the web server level. Link: HTTP/1.1 (DELETE, GET, HEAD, PUT, POST) SQL Injection Cheat Sheet The idea is of course that you use the cheat sheet...

posted @ Tuesday, March 20, 2007 9:17 PM | Feedback (0)

Due to a technical fault all writing about trains has been delayed

Those of you out there who noticed I occasionally write about Auckland train related 'things' might wonder why I've not been posting about the recent train chaos. The answer is quite simple - I gave up on the trains a couple of weeks back, and I've been driving to/from work. After a couple of pretty miserable days trying to commute during the flood of signal failures, I thought they were doing the right thing by cancelling some services and focusing on getting the work done. I wonder whether they should have cancelled more services to get an even clearer shot at...

posted @ Sunday, March 18, 2007 9:40 PM | Feedback (0)

SnTT: Adding a Side Mail Preview Pane in the basic Notes R8 client

My first entry into SnTT is going to be a very brief one, and as the title suggests it involves adding a side preview pane to the basic (i.e, the non eclipse) Notes client. Since the release of the Notes 8 public beta, I've heard a few people complain about the fact that the side mounted preview pane is only available in the "standard" client. I've never been a heavy preview pane user, however I'd debated trying it on the side in case that changed my mind. I'm using the basic client mostly at the moment, so I decided to see...

posted @ Thursday, March 15, 2007 5:36 PM | Feedback (0)

Debugging DataSet Constraint issues

If you work with typed datasets often enough, then chances are that at some point you're going to run across this error message: Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. The error message is logical enough - it tells you what's wrong. You have a dataset, and there's a piece of data which is violating it's constraints. If you have a small dataset, then you can usually spot where the problem lies quickly enough. However for larger datasets the offending table(s) and/or column(s) are usually harder...

posted @ Tuesday, March 13, 2007 2:24 PM | Feedback (3) Filed Under [ ASP.NET Visual Studio Web Development ]

Notes and Domino 8 public beta now available

After a few initial hiccups with the IBM download servers the public beta 2 release of Notes and Domino 8 is now available. I've downloaded, installed, and used both the 'basic' and 'standard' versions today and have to say it all looks pretty positive. I plan to write more about this, but I'm going to wait until I've used each of the clients properly for a few days before making any comments or observations. Link: Lotus Notes/Domino R8 Beta 2 Link: edbrill.com: Notes and Domino 8 public beta now available

posted @ Sunday, March 11, 2007 8:26 PM | Feedback (0)

Notes/Domino 8 - the anticipation is rising

With the imminent release of the Notes/Domino R8 public beta early next week, the Notes/Domino community is sounding a little bit like eager kids at Christmas. The difference being that instead of a fat man in a red suit as Santa, we have a fat corporation with a blue logo. Oh, and this Santa doesn't tend to read his letters too often either. However sticking with the theme, I was thinking about what I'd like for Christmas from the Big Blue Santa. The largest gift is one that I'm pretty sure he's delivered - an attractive looking client. If they...

posted @ Friday, March 09, 2007 8:01 PM | Feedback (0)

Commuting chaos

I feel like a everyone else has given up on moaning online about the Auckland trains. But never fear! I shall continue to rant and vent in the hope that someone out there is listening.. and even if they're not, it makes me feel slightly better. I hopped on the train tonight, not suspecting anything was wrong. The train turned up pretty much when it was supposed to, however I didn't realise that the network had been having problems all day. Everything was fine until Avondale. We stopped, the doors open, passengers get off, the doors close. The train wasn't moving....

posted @ Monday, March 05, 2007 8:42 PM | Feedback (0)

WebResource.axd followup

Back in October 2006 I wrote an article which covers troubleshooting problems related to WebResource.axd. A few months down the track, and the article has had a lot of hits, a few comments, and a few external links - I can only conclude that a lot of you out there have had major problems with WebResource.axd! I wrote the article as a result of problems when deploying the project I was working on at the time, and it seems that I was 'lucky' enough to need to make changes or to verify the configuration for a lot...

posted @ Thursday, March 01, 2007 2:09 PM | Feedback (0) Filed Under [ ASP.NET Miscellaneous ]

@FizzBuzz

Imran on Tech recently wrote about using FizzBuzz to Find Developers who Grok Coding. The post basically talks about asking job interviewees to write a simple piece of code based on the following: Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”. The point of the exercise being that there are a surprising number of people which fail this simple task, however what follows in the comments...

posted @ Thursday, March 01, 2007 12:03 AM | Feedback (0) Filed Under [ Notes/Domino ]

About me

My name is Ross Hawkins and I'm a Developer, Consultant and Writer based in Auckland, New Zealand (pictured below!). My current work revolves around ASP.NET, C#, jQuery, Ajax, SQL Server, and a mix of other Microsoft development technologies.

I also have about 14 years of experience with IBM Lotus Notes/Domino and associated technologies. While Notes/Domino is no longer my primary focus I still like to dabble and keep my skills up to date.

I own and run 2 businesses - Hawkins Consulting Services, and Ignition Development.

Bethells Beach, located in sunny West Auckland, New Zealand


Subscribe

Subscribe to this feed


Search


Popular Content

Troubleshooting WebResource.axd

The .NET 2.0 framework changed the way clientside JavaScript is delivered to the browser. Previously, ASP.NET 1.1 used the aspnet_client directory whereas now 2.0 uses WebResource.axd.

Published on October 8, 2006

Microsoft AJAX Extensions: Sys.Debug is null or not an object

One of the breaking changes which was made with the 1.0 release of the Microsoft Ajax Extensions was the renaming of the 'Debug' class to 'Sys.Debug' for reasons of compatiability with other frameworks. Breaking changes like this can often be a source of frustration..

Published on May 22, 2007

Simple ASP.NET Character Counter

A textbox character counter is a pretty simple piece of functionality, and there's a lot of different ways to apply one to your application. The following method is nice and simple, and can be done using only clientside JavaScript if required, or combined with server side code in order to create a more dynamic effect

Published on December 4, 2006

Simple ASP.NET Character Counter - with Master Page Support

A quick update to my previous character counter article adding some changes for those using it with Master Pages.

Published on February 7th, 2009

Adding Tooltips to Gridview Headers

As the title says, this is a very simple but dynamic way of achieving tooltip text on a header column. It's not overly flash, but it's lightweight and quick to implement.

Published on April 15, 2007

SQL Server Web Report Viewer Issues on Windows 2008 Server/IIS7

A fix for another AXD related issue, this time with the SQL Server Web Report Viewer Control which was being served up via IIS7 on a Windows 2008 server.

Published on June 2, 2007
Updated on April 10, 2008


Archives

March, 2010 (3)
February, 2010 (6)
January, 2010 (12)
December, 2009 (13)
November, 2009 (11)
October, 2009 (12)
September, 2009 (12)
August, 2009 (2)
July, 2009 (7)
June, 2009 (12)
May, 2009 (9)
April, 2009 (9)
March, 2009 (9)
February, 2009 (8)
January, 2009 (7)
December, 2008 (6)
November, 2008 (7)
October, 2008 (9)
September, 2008 (12)
August, 2008 (9)
July, 2008 (6)
June, 2008 (24)
May, 2008 (13)
April, 2008 (16)
March, 2008 (8)
February, 2008 (10)
January, 2008 (1)
December, 2007 (14)
November, 2007 (11)
October, 2007 (11)
September, 2007 (13)
August, 2007 (11)
July, 2007 (5)
June, 2007 (15)
May, 2007 (11)
April, 2007 (9)
March, 2007 (9)
February, 2007 (10)
January, 2007 (8)
December, 2006 (18)
November, 2006 (11)
October, 2006 (14)
September, 2006 (9)
August, 2006 (10)
July, 2006 (4)
June, 2006 (4)
May, 2006 (6)
April, 2006 (3)
February, 2006 (6)
January, 2006 (10)
September, 2005 (2)
August, 2005 (4)

Post Categories

ASP.NET
AJAX
Amusing
NZ
NZ Trains
Notes/Domino
Visual Studio
Web Development
Miscellaneous
Me
Rugby
C#
SQL


Twitter