ASP.NET Home  Home RSS 2.0 Atom 1.0 CDF  

Manuel Abadia's ASP.NET stuff - Monday, April 03, 2006

 
 Monday, April 03, 2006
This post explains the properties and methods of the ControlDesigner class, the base class for all ASP.NET designers.

Monday, April 03, 2006 6:29:28 PM (Romance Daylight Time, UTC+02:00)  #    Comments [0]    | 
 Wednesday, March 29, 2006
Creating cool controls is only the first half of the work. The second half of the work is to add rich design time support in order to make it easy to use and improve productivity.

This post is an introduction to Component Designers.

Thursday, March 30, 2006 12:38:13 AM (Romance Daylight Time, UTC+02:00)  #    Comments [3]    | 
 Monday, March 27, 2006
Finally WebParts are getting Drag & Drop support for FireFox although WebParts are not working 100% yet.

Tuesday, March 28, 2006 6:58:28 AM (Romance Daylight Time, UTC+02:00)  #    Comments [4]    | 
 Sunday, March 26, 2006
An Excel spreadsheet where you have guess some old games based on the screenshots.

Very funny!

Sunday, March 26, 2006 10:37:08 PM (Romance Daylight Time, UTC+02:00)  #    Comments [0]    | 
 Thursday, March 23, 2006
My copy of Programming Microsoft ASP.NET 2.0 Advanced Topics has finally shipped

Thursday, March 23, 2006 6:16:01 PM (Romance Standard Time, UTC+01:00)  #    Comments [1]    | 
 Tuesday, March 21, 2006
Everybody knows that reflection is slow but I wanted something more measurable than slow so I did some performance tests for the basic things I do with reflection.

Wednesday, March 22, 2006 1:51:37 AM (Romance Standard Time, UTC+01:00)  #    Comments [3]    | 
 Saturday, March 18, 2006
This week has been a different week for me.

Somehow I ended up designing the layout for a book

Saturday, March 18, 2006 9:38:48 PM (Romance Standard Time, UTC+01:00)  #    Comments [0]    | 
 Sunday, March 12, 2006
This completes the emulation of Trivial Pursuit (Spanish).

There are some screenshots of the game.

Sunday, March 12, 2006 9:41:15 AM (Romance Standard Time, UTC+01:00)  #    Comments [9]    | 
 Friday, March 10, 2006
In the past weeks I've been posting some detailed information about how the ObjectDataSource works in ASP.NET 2.0.

In those posts I pointed out some limitations or problems with the ObjectDataSource control. The only real solution here its to code your own data source control but it isn't an easy task.

As I was very unhappy with the ObjectDataSource I coded my own data source control based on the ObjectDataSource but with a lot of improvements.

Take a look at it here:
http://www.manuelabadia.com/products/EODS_features.aspx

Saturday, March 11, 2006 3:36:08 AM (Romance Standard Time, UTC+01:00)  #    Comments [6]    | 
 Sunday, March 05, 2006
Trivial Pursuit (Spanish) is not a simple rom swap. There are 40320 possible combinations to map the program ROMs.

With some patience I have reduced the number of combinations to 120.

There are some screenshots of the current progress. I'll finish emulating this next week.

Sunday, March 05, 2006 9:48:24 AM (Romance Standard Time, UTC+01:00)  #    Comments [3]    | 
 Thursday, March 02, 2006
Finally a PCB for Trivial Pursuit Spanish has been found. This was a MAME Most Wanted board and will be emulated soon...

Al fin se ha encontrado una placa del Trivial Pursuit en español, que era uno de los juegos más buscados del MAME. Pronto estará emulado...

Thursday, March 02, 2006 8:34:32 AM (Romance Standard Time, UTC+01:00)  #    Comments [7]    | 
 Tuesday, February 28, 2006
This is the last part in the ObjectDataSource tutorial. It explains the importance of setting AffectedRows, optimistic concurrency, parameter merging in detail, caching and design time attributes.

There's an example where most of the ObjectDataSource capabilities are used.

Tuesday, February 28, 2006 9:03:41 PM (Romance Standard Time, UTC+01:00)  #    Comments [2]    | 
 Monday, February 20, 2006
I was "playing" with the ObjectDataSource's example from Part 2 when I realized I didn't enabled client callbacks for paging and sorting. I set GridView's EnableSortingAndPagingCallbacks to true and tried it. To my surprise, it didn't work! I was confused because I had tried it that in the past and it worked without any problems so it made no sense that it wasn't working now.

Of course the first thing that comes to my head in those situations is: "There's a bug in GridView's implementation". The reality is that 95% of the time it's my own fault but one never finds himself guilty until proven wrong!

Monday, February 20, 2006 8:44:43 PM (Romance Standard Time, UTC+01:00)  #    Comments [0]    | 
 Friday, February 17, 2006
This article continues exploring the ObjectDataSource. The topics covered are paging, sorting, filtering, parameters and events.

Saturday, February 18, 2006 1:26:42 AM (Romance Standard Time, UTC+01:00)  #    Comments [4]    | 
 Saturday, February 11, 2006
ObjectDataSource lets you integrate your own objects in the ASP.NET data binding framework without much work. In order to do so, you have to understand the data binding infrastructure (see my previous posts if you need more info about it) and what ObjectDataSource does for you.

Sunday, February 12, 2006 12:43:13 AM (Romance Standard Time, UTC+01:00)  #    Comments [3]    | 
 Friday, February 10, 2006
Another year and another Grammy that Steve Vai lost.

Friday, February 10, 2006 8:30:40 PM (Romance Standard Time, UTC+01:00)  #    Comments [0]    | 
 Saturday, February 04, 2006
This is the last post in the series about data source controls and the new data binding infrastructure.

Now I’m going to explain what does the framework internally to support two way data binding.

A data binding expression is contained withing <%# and %> delimiters. Inside those delimiters you can place code that return a value, an Eval expression or a Bind expression. You have two way data binding only if you use a Bind expression.

Saturday, February 04, 2006 8:06:06 PM (Romance Standard Time, UTC+01:00)  #    Comments [1]    | 
 Sunday, January 29, 2006
It’s time to talk about the abstract class DataSourceView.

The DataSourceView class exposes the capabilities of the data source control (if it can update, insert, delete, page, sort…) and has the methods to do CRUD operations (select, insert, update and delete). It’s the element with most functionality in the new data binding infrastructure by far.

Sunday, January 29, 2006 7:04:25 PM (Romance Standard Time, UTC+01:00)  #    Comments [1]    | 
 Sunday, January 22, 2006
In a previous article I explained the infrastructure for a data bound control (how it gets data from a DataSourceView and when the framework calls the DataBind method). Now it’s time to explain a bit the DataSourceControl class.

Sunday, January 22, 2006 8:52:21 AM (Romance Standard Time, UTC+01:00)  #    Comments [2]    | 
 Thursday, January 12, 2006
The new data source controls and the new data binding infrastructure is a cool feature that can simplify development time (especially for simple scenarios and for people without much knowledge of the framework).However, for hardcore developers, not knowing what exactly the new data binding infrastructure does under the hood is problematic and unfortunately, it isn't very well documented anywhere...I'll try to explain some of the "magic" involved in this.

Thursday, January 12, 2006 9:01:34 AM (Romance Standard Time, UTC+01:00)  #    Comments [10]    | 
Copyright © 2009 Manuel Abadia. All rights reserved.