ICaramba

Miguel Castro's blog about .NET and its effect on National Security, the Eco-system, and his daughter's sleeping patterns.


News

My Stats

  • Posts - 120
  • Comments - 69
  • Trackbacks - 145

Twitter












Recent Comments


Recent Posts


Archives


Image Galleries



Blogs I read


Links


Microsoft DCCs


November 2006 Entries

Sad event


Always a sad thing when something likes this happens, but given the direct and indirect connection shared by everyone in the Microsoft developers community, this hits close to home.

http://www.iowadnug.org/DesktopDefault.aspx

My prayers go out to the family and friends of Eric Jacobs, 31, and Josh Trainor, 23 from Des Moines, Iowa.

posted @ Wednesday, November 29, 2006 8:09 PM | Feedback (1) |


Great first CLSA Class !!!


Well, for the past 6 weeks, I've been preparing to teach a class based on Rocky Lhotka's famous CSLA framework.  On Wed. Nov. 22 at around 3:30pm, the moment I have been waiting for finally arrived - the beta class was over.  Now before this is misinterpreted as a negative statement, let me say this:  it was awesome.  I thouroughly enjoyed teaching this class and using this framework.  Rocky has done a tremendous job with this and deserves major kudos.  With Rocky's support and help, Mark Dunn and I will be setting up several public CSLA classes for the 2007 year.  You can read all about the class, the course outline, and some quotes from the students in the Nov class at: http://www.dunntraining.com/CSLATraining.htm.

Thank you to Mark Dunn for giving me this opportunity and thank you Rocky for writing an exceptional framework.

posted @ Monday, November 27, 2006 7:55 PM | Feedback (1) |


Little problem with Atlas UpdatePanel control


For those of you who have used the Microsoft Ajax Framework (Atlas), then you know that the UpdatePanel control is probably one of the more important new additions to ASP.NET development.  Anything you place inside of it becomes "ajaxified".  Unfortunately, I found a little problem when a link or button that resides inside an UpdatePanel tries to "Redirect" out to another page - the error is rather ugly.  After Googling a bit, I found others have had this problem and a fix was mentioned.  I was happy to see that the fix worked and it only involves registering a couple of HTTP Modules in the site's Web.Config file.

So here they are:

<httpModules>
      <
add name="WebResourceCompression" type="Microsoft.Web.Handlers.WebResourceCompressionModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
/>
      <
add name="ScriptModule" type="Microsoft.Web.UI.ScriptModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
/>
</
httpModules>

posted @ Thursday, November 16, 2006 4:49 PM | Feedback (0) |