Imagine that today you crashed a bicycle at about 25mph with a kind road sign stopping you from sliding too farJ Note to self: Immovable objects really hurt when you hit them. A few hours later (avec arm in cast) imagine my one handed horror at realizing that 2003 sever needs a ctrl-alt-delete to [...]
Archive for August, 2004
Several companies running ASP.Net experience this problem. They have several web applications and need common authentication. Out of the box ASP.Net makes the user login in to each different application. I know of several organizations where this was a frustration to hundreds if not thousands of user. Luckily the fix is trivial. Open up machine.config [...]
It is while since I wrote this code-snippet, but at the time many DataGrid experts said it could not be done. After about twenty minutes of trying to understand some DataGrid events a working solution was found: if (this.dataGrid.EditItemIndex > -1) { // Update the DataGrid this.dataGrid_UpdateCommand( this.dataGrid, new DataGridCommandEventArgs( this.dataGrid.Items[this.dataGrid.EditItemIndex], this.dataGrid, new System.Web.UI.WebControls.CommandEventArgs(“Update”, “”))); [...]