Why Programmers Can’t Program
Jeff Atwood of Coding Horror writes:
“I find it difficult to believe, but the reports keep pouring in via Twitter and email: many candidates who show up for programming job interviews can’t program. At all.”
Jeff, you must not have visited a college campus recently. The reason most that most “programmers” can’t program is because their instructors led them to believe they could program.
I have two stories that illustrate the point.
If you're new here, you may want to subscribe to the mailing list to get notifications of new post and a virtual tour of past topics. Thanks for visiting!
When Session Objects Get Created With No Session Variables
I thought about calling this Session Object Madness, but it really isn’t that crazy once you think through what’s happening.
Here’s the issue. I have a client who does work for another client who is hosting their sites at IBM.
I’m told that IBM will not enable any session servers so none of the sites can include session objects. And that’s where the fun begins.
Changing an Existing DNN Module
Got this question this morning from the “Ask A Question” form.
“How do I make a change in an existing DotNetNuke module? I want to add new fields to the feedback form.”
I’m assuming the question is about making changes to the module without touching the source code.
Sharing ObjectDataSource From Codebehind
I ran into an interesting “problem” last week that wasn’t all that hard to figure out once I broke out the debugger. But I thought it would be useful to share the results to save others the time.
The situation was that I had an Object Data Source in a FormView that I wanted to share with both a DataGrid in the FormView and a DataRepeater outside of the FormView. Since it was in the FormView, the DataRepeater couldn’t see it.
So it seemed reasonable to me that if I could just trap the right event in the FormView I could assign the DataSource of the GridView to the DataSource of the Repeater, rebind the Repeater and we’d be on our way.
It wasn’t quite that simple.
ASP.NET Session Variables Not Sticking
I’ve stumbled across this problem twice in the last couple of months so I figure it is about time I blogged about it.
The situation is that you have a page on your web site that sets a session variable and then redirects to another page that is expecting the variable to be there, only it isn’t there.
The first time this happened it was a browser specific (Internet Explorer) issue.
The second time it happened it seemed to be an email client specific issue.

