ASP.NET Home  Home RSS 2.0 Atom 1.0 CDF  

Manuel Abadia's ASP.NET stuff - Microsoft .NET Framework

 
 Monday, April 28, 2008
My experience with Google's AdSense API.

Tuesday, April 29, 2008 6:25:28 AM (Romance Daylight Time, UTC+02:00)  #    Comments [1]    |  |  |   | 
 Friday, February 08, 2008
My review of the NDepend tool.

Friday, February 08, 2008 9:22:13 PM (Romance Standard Time, UTC+01:00)  #    Comments [2]    |  |   | 
 Sunday, January 13, 2008
I have finally updated the DebuggerVisualizer for Visual Studio 2008 RTM version.

Sunday, January 13, 2008 7:08:02 PM (Romance Standard Time, UTC+01:00)  #    Comments [0]    |  |   | 
 Saturday, November 24, 2007
Patents can be a source of information some times that can be difficult to find in other places...

Saturday, November 24, 2007 6:56:41 PM (Romance Standard Time, UTC+01:00)  #    Comments [0]    |   | 
 Thursday, November 15, 2007
DocProject is an excellent tool to generate the documentation of your code. I explain how to configure it and have the documentation generated in 5 minutes.

Friday, November 16, 2007 7:58:43 AM (Romance Standard Time, UTC+01:00)  #    Comments [3]    |   | 
 Friday, November 02, 2007
Some challenges I had to face to be able to keep up with the growing of the business.

Friday, November 02, 2007 7:04:32 AM (Romance Standard Time, UTC+01:00)  #    Comments [0]    |  |  |   | 
 Friday, October 12, 2007
An update to my NHibernate Custome Membership and Role Provider with some bug fixes, a CreateUserWizardEx control and autounlocking.

Friday, October 12, 2007 11:58:30 PM (Romance Daylight Time, UTC+02:00)  #    Comments [0]    |  |   | 
 Wednesday, June 13, 2007
A rant about the policies that Microsoft is applying when fixing bugs in the .NET Framewok and Visual studio.

Wednesday, June 13, 2007 11:09:57 PM (Romance Daylight Time, UTC+02:00)  #    Comments [0]    |   | 
 Tuesday, April 24, 2007
A free DebuggerVisualizer to display the Linq Expression Trees.

Tuesday, April 24, 2007 9:05:10 PM (Romance Daylight Time, UTC+02:00)  #    Comments [3]    |   | 
 Sunday, April 08, 2007
Custom Membership and role providers for ASP.NET that can be used to store the membership and role data in your own tables using NHibernate.

Monday, April 09, 2007 1:21:02 AM (Romance Daylight Time, UTC+02:00)  #    Comments [14]    |  |   | 
 Wednesday, March 28, 2007
I blog about the inconsistencies in the API for generic methods, the lack of support of the ObjectDataSource for generic methods and the problems surfaced when adding full generics support to my CompatObjectDataSource/ExtendedObjectDataSource components.

Wednesday, March 28, 2007 7:35:22 AM (Romance Daylight Time, UTC+02:00)  #    Comments [1]    |   | 
 Wednesday, March 07, 2007
I read about the improvements of the Java lenguage in a book about Hibernate and I give my own opinion about Java vs .NET.

Wednesday, March 07, 2007 9:04:30 AM (Romance Standard Time, UTC+01:00)  #    Comments [3]    |  |   | 
 Thursday, February 22, 2007
I explain how to use Generic Types with the ObjectDataSource and how to solve the problem to reference a type in the dynamically generated App_Code assembly.

Thursday, February 22, 2007 8:52:54 AM (Romance Standard Time, UTC+01:00)  #    Comments [1]    |   | 
 Wednesday, January 24, 2007
Finally the ASP.NET AJAX Library (previouly named Atlas) has been officially released, and it comes with full source code!

Thursday, January 25, 2007 2:17:12 AM (Romance Standard Time, UTC+01:00)  #    Comments [1]    |  |  |  |   | 
 Monday, January 08, 2007
This is the last post of the ANTLR tutorial.

A complete example is created and the generated source code is studied in detail.

Monday, January 08, 2007 4:41:33 PM (Romance Standard Time, UTC+01:00)  #    Comments [3]    |   | 
 Tuesday, January 02, 2007
I continue giving an overview of the main classes of ANTLR.

This post covers Trees, ITreeNodeStreams and TreeParsers.

Tuesday, January 02, 2007 7:13:38 PM (Romance Standard Time, UTC+01:00)  #    Comments [0]    |   | 

Another year ends and a new one comes. Life goes as fast as usual and we’re keep on our way. It’s time to think about it… our actions, hopes, wishes, mistakes, etc.

I usually listen to a special song a few minutes after the start of the year. In the last few years I have been choosing "Aerosmith – Full Circle" because it has special connotations for me.

I wish you the best in the coming year.

Tuesday, January 02, 2007 8:36:54 AM (Romance Standard Time, UTC+01:00)  #    Comments [0]    |  |  |  |  |  |  |  |  |   | 
 Tuesday, December 26, 2006
A global vision about the main classes in ANTLR.

Wednesday, December 27, 2006 12:10:19 AM (Romance Standard Time, UTC+01:00)  #    Comments [2]    |   | 
 Saturday, December 02, 2006
I'm playing with DebuggerVisualizers in order to add support for displaying trees to simplify debugging of complex algorithms based on trees.

Sunday, December 03, 2006 1:17:59 AM (Romance Standard Time, UTC+01:00)  #    Comments [2]    |   | 
 Monday, November 27, 2006
Visual Studio.NET 2005 has a really cool feature called debugger visualizers. I provide an introduction to this feature and I talk about a set of debugger visualizers I created for the .NET data structures.

Monday, November 27, 2006 8:37:06 AM (Romance Standard Time, UTC+01:00)  #    Comments [0]    |   | 
 Friday, November 10, 2006
I have been taking a look to some compiler tools and I found ANTLR, that seems to be pretty good and it has a full blown IDE that kick ass, ANTLRWorks!

Friday, November 10, 2006 8:06:09 AM (Romance Standard Time, UTC+01:00)  #    Comments [2]    |   | 
 Tuesday, September 05, 2006
NDoc was the de facto standard to create documentation for .NET but it has been discontinued.

Finally Microsoft has created the SandCastle project to provide a decent documentation tool for .NET developers.

Tuesday, September 05, 2006 7:58:49 AM (Romance Daylight Time, UTC+02:00)  #    Comments [0]    |  |   | 
 Wednesday, July 05, 2006
Being able to dynamically call an arbitrary method on an object or the ability to get/set any arbitrary property by name at run time is very important when it comes to do some generic stuff. In .NET Framework 1.x the only way to do that was using reflection and that means to do it slow.

Fortunately, the .NET Framework 2.0 introduces a new class that let us to quickly call an arbitrary method without the overhead of a reflection call.

Wednesday, July 05, 2006 8:47:29 AM (Romance Daylight Time, UTC+02:00)  #    Comments [3]    |   | 
 Wednesday, June 28, 2006
A review of this book that is targeted for a Java audience but the main content can be useful to .net developers too.

Wednesday, June 28, 2006 9:16:47 PM (Romance Daylight Time, UTC+02:00)  #    Comments [0]    |   | 
 Monday, June 19, 2006
In this post I talk about the upcoming release of .NET Framework 3.0, some hints about what I'm doing right now, how design time support is going for the ExtendedObjectDataSource package and a nice tip: how to debug design time stuff (the easy way ;)

Monday, June 19, 2006 7:49:35 AM (Romance Daylight Time, UTC+02:00)  #    Comments [1]    |  |   | 
 Tuesday, April 18, 2006
InDesign exposes its functionality as a COM object so it can be used in Microsoft .NET Framework.

I explain some things that you have to keep in mind when working with InDesign in C#. There's also a sample to remove the carriage returns from the end of the footnotes.

Tuesday, April 18, 2006 3:57:19 PM (Romance Daylight Time, UTC+02:00)  #    Comments [4]    | 
Copyright © 2008 Manuel Abadia. All rights reserved.