Everyone seems blown away by Scott's javascript focus trick, but no one seems to have noticed his comments on VB vs C# (in the Performance Talk slides). I've seen reviews where C# is shown to blow VB away, but after reading Scott's deck, it seems that this was likely due to badly written VB. VB still allows you do make untyped declarations like this:
Dim counter
For counter = 0 to 7
Response.Write counter
Next counter
This code will always perform worse than this:
Dim counter as Integer
For counter = 0 to 7
Response.Write counter
Next counter
Attention VB coders! Make sure you use the strict page declaration in your ASPX pages. This will keep you from writing code like that shown above.
<%@ Page Language=?VB? Strict=?true? %>
Enjoy!