Archive for September, 2008
SQL IF/WHILE Blocks – SQL For Programmers
OK, all you programmer types. Here’s where SQL starts getting interesting. You have the basic concepts of declaring variables, setting up stored procedures, and doing a basic insert, update or delete statement. And if we stopped here, you’d probably be able to do 80% of the work you need to do.
You’d also start to wonder why you should even bother.
So now we tackle the basics of conditional programming in SQL.
Two Interfaces. Same Method. Two meanings.
We’ve discussed interfaces before, but today I want to dig a little deeper. I’m going to assume for now that you already know what an interface is and that you know how to implement one on a class.
But let’s assume for a bit that you have two interfaces that have exactly the same method declared in them but each implementation of the method has two entirely different meanings. How do you code for this?
jQuery and Microsoft
While I had already decided to start a series on jQuery, this announcement pretty much solidifies the decision. Watch this space for posts on how to use jQuery in your ASP.NET applications!
Friday Books – Rapid Development
My list of “Must Have Books” would not be complete without a copy of “Rapid Development” by Steve McConnell.
To be honest this is more of a Manager’s book than a Programmer’s book, but I still advise programmers to get a copy and read it. Why? Well for one thing, most of your managers won’t bother. So the only way they are going to get this information is if you read it and tell them.
Conditional Footnotes On GridView
A couple of days ago I ran into a requirement to conditionally display footnote information at the bottom of a GridView display. We were already conditionally displaying icons in the row. What we needed to do was to conditionally show text at the bottom of the screen that explained what each icon was for. Here’s how we went about it.