Monday, February 26, 2007

What does single sign-on mean to you (with ASP.Net examples)

While looking for sample code for simply cross-domain single sign-on for a new project, I stumbled across Micheal Morozov's excellent detailing of six different common meanings when someone talks about single sign-on. Better yet, he details the way that you setup ASP.Net web.config and code to accomplish each. Read Single signon for everyone for the details.

Tuesday, February 13, 2007

Today in blinding science - Adoptive parents actually care more.

Who out have expected this outcome?

Amazing, really, that parents that struggle through the convoluted course of modern adoptions seem to care for thier children more than biological parents. I'm so they've spent the time and money necessary to confirm what my 3 year old would say "Duh!" about.

Wednesday, February 07, 2007

Hook that MasterPage.Init event if you want dynamically added controls to be around to handle events.

MasterPages sometimes interfere with your pages in the oddest of ways. Oren Ellenbogen shows a clever strategy for handling the creation of dynamically added controls (which you normally would add in OnPreInit.

You want to hook the base.Master.Init event. See this great post.