|
Posted to:
10-29-2007, 5:57 PM
|
There is a little used function of Visual Studio that will save you a lot of coding time: Code Snippets. Code Snippets are handy key shortcuts that expand into commonly used .NET constructs such as regions, constructor, loops (do/while/for/foreach), and...
|
|
Posted to:
10-29-2007, 11:41 AM
|
I used to be a big fan of Assembly (x86) in the past when doing graphics for the ancient 320x200x256 and later when lecturing about 80x86 to practical engineers. These days I don't do that anymore, but I think knowing the basics does make sense. This...
|
|
Posted to:
10-29-2007, 5:00 AM
|
A while back I wrote an article for CodeProject that was just a simple demonstration of how to load portions of content after the initial page load using AJAX.NET . Basically, using a timer and an update panel, this user control loads some RSS headlines...
|
|
Posted to:
10-28-2007, 11:55 PM
|
Have you ever wanted to grab bulk data on a grid view? It's actually not that hard at all. Set the System.Web.UI.WebControls.GridView.DataKeys Property on the Grid, then on the postback event iterate over the grid like so. 1: foreach (GridViewRow row...
|
|
Posted to:
10-28-2007, 7:01 PM
|
I think SubSonic is simply amazing. It has saved me so much time and effort of writing. One little trick that it's got is the LoadFromPost method the Models inherit from the SubSonic.AbstractRecord<T> class. What LoadFromPost does is iterate over...
|
|
Posted to:
10-28-2007, 12:53 PM
|
LINQ provider for Flickr gives an easy way to query , add and delete Flickr photos. Here, I will give some sneak preview about how to use the provider to do different operations on Flickr, as if doing queries with SQL objects. Now, waiting no more, lets...
|
|
Posted to:
10-28-2007, 9:22 AM
|
I have just posted the 3rd and final part of this miniseries about MSIL on Channel8 , links below. MSIL - the language of the CLR (Part 3) MSIL - the language of the CLR (Part 2) MSIL - the language of the CLR (Part 1) If I were to trust the view stats...
|
|
Posted to:
10-28-2007, 8:57 AM
|
Some time ago I had to deal with sorting algorithms. Besides my main task I found a good way how to test custom sorting algorithms. This blog entry is one of early birds, more about sorting algorihtms is coming soon. Hopefully some time after TechEd 2007 for Developers....
|
|
Posted to:
10-27-2007, 3:33 PM
|
I am very active in the vlogging community at YouTube and Stickam . Vlogging is clearly the future of online communication and social networking sites. I have been particularly impressed by how effective vlogging is for forming genuine friendships and...
|
|
Posted to:
10-27-2007, 3:03 PM
|
Today, I gave a presentation at CodeCamp Montreal on ASP.NET/AJAX and Visual Studio 2008. Thanks to all attendees. You can download below my code and my powerpoint presentation. Thanks Dominic
|