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 - 122
  • Comments - 68
  • Trackbacks - 145

Twitter












Recent Comments


Recent Posts


Archives



Blogs I read


Links


Microsoft DCCs


 

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.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

 

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.

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

 

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>

  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati