Archives
-
Find Control that Caused a Postback
Sometimes there is the need to find the control that caused the postback from outside the event handler. The following code gives you just that:
-
ASP.NET Events
Here is the full list of all events that occur in an ASP.NET application, from the standard modules, to the page, master page, page controls and master page controls.
-
ASP.NET Dynamic Data NHibernate Provider
My NHibernateDataSource was just a necessary step in order to build an ASP.NET Dynamic Data provider for NHibernate. I am pleased to say that it is now working! Like the NHibernateDataSource, it is only - for now - merely a proof of concept, it needs cleaning up and still misses the association metadata part, which means no links to associated entities, but list, edit, delete and insert are working fine.
-
NHibernateDataSource
I wrote a NHibernateDataSource, which can be used in ASP.NET web forms applications just like their counterparts EntityDataSource and LinqDataSource.