Archives

Next Archive Previous Archive

01 Sep - 30 Sep 2003
01 Oct - 31 Oct 2003
01 Nov - 30 Nov 2003
01 Jan - 31 Jan 2004
01 Feb - 28 Feb 2004
01 Mar - 31 Mar 2004
01 May - 31 May 2004
01 June - 30 June 2004
01 Jul - 31 Jul 2004
01 Nov - 30 Nov 2004
01 Jan - 31 Jan 2005
01 Apr - 30 Apr 2005
01 May - 31 May 2005
01 Jul - 31 Jul 2005
01 Aug - 31 Aug 2005
01 Sep - 30 Sep 2005
01 Oct - 31 Oct 2005
01 Nov - 30 Nov 2005
01 Dec - 31 Dec 2005
01 Jan - 31 Jan 2006
01 Feb - 28 Feb 2006
01 Mar - 31 Mar 2006
01 May - 31 May 2006
01 June - 30 June 2006
01 Aug - 31 Aug 2006
01 Sep - 30 Sep 2006

Last Comments

cheap lexapro (Refactoring): It is very important for you to click below. Trust …
generic soma1988 (Refactoring): askljdIt is very important for you to click below. …
cheap tramadol842… (Glade 3 in MonoDe…): irlgipIt is very important for you to click below. …
zyban (MonoDevelop impro…): It is very important for you to click below. Trust …
buycelexa (Designing menus): It is very important for you to click below. Trust …
cheap tramadol (Designing menus): It is very important for you to click below. Trust …
cialis (Back from holiday…): It is very important for you to click below. Trust …
generic cialis (So many news in M…): It is very important for you to click below. Trust …
sales (Refactoring): World of Warcraft Gold,Wow Gold,Cheap World of Warc…
a roulette wheel (Namibia): I must win this battle. You should help

Last Referrers

22:03 metaldetectormd.blogspot.com/2…
22:02 ww2.wrongsideoftown.com/track/…
22:02 galleries.asstraffic.com/alyss…
22:02 mature-lessons.com/wm1361
22:02 209.85.135.104/search
22:02 metaldetectormd.blogspot.com
22:00 1000000mp3.info/mp3shop/album/…
21:54 buyhghsupplement.info/2008/03/…
21:54 buyhghsupplement.info
21:54 buyhghsupplement.info/2007/06/…

Links

Google
Pivot

To change this list, edit the file '_aux_link_list.html' in your pivot's templates folder.

Stuff

Powered byPivot - 1.24.3: 'Arcee' 
XML Feed (RSS 1.0) 

About

This is the default template for Pivot. You can change this text by editing the file templates/frontpage_template.html in your pivot folder.

Linkdump

+ 9 - 3 | § More ASP.NET 2.0

Lots of progress in ASP.NET 2.0 in the last weeks. GridView, DetailsView and FormView can be considered feature complete. Most of the work went to GridView, but once it was complete, implementing DetailsView and FormView has been really easy, since they share all databinding infrastructure. I've also implemented all field classes which are also shared by those controls. Well, FormView does not use field controls, because it is based on template controls. Which reminds me that two-way binding is already working. With two-way binding you can do things like:

<asp:TextBox ID="textbox1" runat="server" Text="<%# Bind ("Name") %>" />

This will show the value of the Name property of the bound object in the text box, and if you change that value in the text box, the object's property will be updated when submitting the form.

The ObjectDataSource control is also mostly complete (only the caching features are missing), and it's been very useful for testing all databound controls, since it is a full-featured datasource control, with support for update, delete and insert, paged selects and so on.

This is a screenshot of an aspx page that uses a GridView in synch with a details view to show a master/detail list of mono contributors. The data is taken from a hand made list of MonoContributor objects, which supports all data source features: sorting, updating, deleting.  I'll add this sample to the xsp sample directory.