Geoff
Member since Dec 11, 2008
- Profile: /members/1258-geoff.htm
- Comments: 2
Recent Blog Comments By Geoff
-
Why Do I Protect People Who Want To Break My Site?
Posted on Oct 12, 2007 at 6:01 PM
In the case of pagination, you should be chucking a 404 if something's out of range. This might be a valid page: index.cfm?page=2 As might this: index.cfm?page=300 But index.cfm?page=9999 might not return any records - so you should 404 it. Otherwise, if you return a valid page, you'll be tellin... read more »
-
IE Has Correct Box Model In Standards Compliant Mode
Posted on Sep 14, 2007 at 2:31 PM
Couple of points: 1) Try and make sure your doctype is the *very first thing* on the page - i.e. no newlines or spaces before it. So you might have to fiddle with <cfsilent> or whatever to make sure you've got no whitespace. 2) I've started using the yahoo reset / font and grid css code, whi... read more »