navigation
 Friday, May 29, 2009
If you're like me, you sometimes use AJAX controls in your web page. And, if you're like me, you find that when they fail to behave as expected, you as the user are not notified as to the reason. Instead, the page will just stare back at you blankly: no spinning globe, no twirling fox to indicate that it is processing your request. Of course, what's really happened is that your AJAX request caused an unhandled exception on the server and the request was canceled. If you're like me (and if you've read this far I am forced to conclude we must be twins) you'd like some visibility into that unhandled exception.

There is a quick and easy solution! Simply add the following to your ASPX code-behind and during your debugging session Visual Studio will report the exception being thrown, complete with the exception message and stack trace. If you'd like to report the exception to the user, you would wrap the inner call in a try/catch block and update your UI (or Logging) accordingly.

Good luck!

C#
protected override void RaisePostBackEvent(IPostBackEventHandler source, String eventArgument)
{
    base.RaisePostBackEvent(source, eventArgument);
}

VB.NET
Protected Overrides Sub RaisePostBackEvent(ByVal source As IPostBackEventHandler, ByVal eventArgument As String)
    MyBase.RaisePostBackEvent(source, eventArgument)
End Sub

posted on May 29, 2009  #    by Brad Divine  Comments [0]
We, at Falafel Software, are very excited that for the second year in a row, Telerik training has won the ASP.NET PRO Readers’ Choice Award for Training.  This year is extra special as the award went to the Telerik Trainer, a WPF based training tool Falafel developed for Telerik and has been gaining tremendous success and adaptability in the market since its release last year.  Microsoft Germany has standardized on Telerik Trainer for all their Visual Studio Express offering on the MS Germany site.
Since 2006, Falafel Software has been providing all Telerik training & Consulting worldwide and it has been a tremendous honor and a rewarding relationship.  Congratulations! to the Telerik team and the Falafel team as well! :)
Telerik Collects 12 Awards at asp<i>.</i>netPRO Readers' Choice Awards
posted on May 29, 2009  #    by Lino Tadros  Comments [0]
 Wednesday, May 27, 2009
Once again I’m sharing some tips and tricks for the Telerik RadGridView control; this time for your combobox editors inside the grid. Learn to allow cell clearing using the combobox and have properly sized dropdowns regardless of cell width.
 |  | 
posted on May 27, 2009  #    by Rachel Hagerman  Comments [2]
 Tuesday, May 26, 2009

Tomorrow, May 27th 2009 from 9:30-11:00am PST, Falafel Software is holding a webinar on Data Driven Testing in TestComplete 7.0. The agenda for the webinar is as follows:

  1. CSV population of data
  2. Excel population of data
  3. MS SQL Server population of Data
  4. Windows and Web examples
  5. Driver methods versus iteration methods in DDT
  6. Realistic example of using DDT to solve real problems.

If you’re interested you can sign up here. The cost of the webinar is $29.

posted on May 26, 2009  #    by Steve Trefethen  Comments [0]
 Tuesday, May 12, 2009
Julie_EntityFramework Julia Lerman’s book on Entity Framework is out and is recommended to learn the ins and outs of this beast.
The picture below was taken with Julia at TechED 2009 in Los Angeles.  Julia and I speak in different cities around the world on .NET topics.  Congratulations Julia! on the release of the book and the hard work that was put into writing it.

IMG_9278
posted on May 12, 2009  #    by Lino Tadros  Comments [0]
 Saturday, May 02, 2009
How to delete TortoiseSVN Username/password cache for specific repositories in three easy steps!
posted on May 2, 2009  #    by Brad Divine  Comments [0]
 Friday, May 01, 2009

It seems like Microsoft has teams cranking out frameworks left right and center.. the Common Application Blocks, the MVC Framework, and today I came across Microsoft's new .NET RIA Service Framework.

What does it do? A lot! It provides a complete framework for an n-tier Silverlight application that fetches data from some back end store, binds it to the UI, manipulates it and writes it back.

It is a crafty combination of metadata, naming conventions, code generation and classes that helps you wire up the plumbing and handle tasks like change detection, validation, authorization in a very straight forward manner.

I recommend that you check out the technology if you are about to embark on a n-tier Silverlight application and don't want to write all the plumbing yourself!

posted on May 1, 2009  #    by John Waters  Comments [0]
 Wednesday, April 08, 2009
Once again I am spending a lot of time working with Telerk’s RadControls for WinForms, and most recently have been looking for all sorts of ways to squeeze every possible bit of speed out of a RadGridView control. Sometimes a really simple change has made a noticeable improvement, and I thought it would be useful to collect those simple-yet-effective tips all in one place.
 |  | 
posted on April 8, 2009  #    by Rachel Hagerman  Comments [1]
 Wednesday, April 01, 2009

Our dear friend at Falafel Software Gary Campbell, this week, achieved MCP Certification status (Microsoft Certified Professional) on ASP.NET.  Congratulations Gary! 

Gary has been a solid member of the team working on the latest and greatest of technologies for our customers with great success.

posted on April 1, 2009  #    by Lino Tadros  Comments [2]