Category: Coding

Exposing an event handler as a control property

You need to expose it as full-blown event, not as property. Page parser in ASP.NET is then able to wire syntax On=”handler_method_name” into your event as listener. #region Event Handlers public delegate void OnAddressSavedHandler(object sender, AddressEventArgs e); public class AddressEventArgs : EventArgs { public Int64 AddressID; public AddressEventArgs(){ } public AddressEventArgs(Int64 val) { AddressID = […]

[HowTo] Use jQuery with Aspx UpdatePanel (datepicker Sample code inside)

As the update panel is going to reload the contents of the html. You’ll have to listen for the UpdatePanel to complete and recreate the datepicker. Here is a very basic sample. This doesn’t take into account multiple update panels on your page or potential memory leaks from not properly destroying your datepicker. Another thing […]

[LINQ] The query results cannot be enumerated more than once (using databinding…)

When you bind the ISingleResultfor the first time, the results are enumerated and the data object is populated. When you bind the same ISingleResult instance to the same control again, it detects that the data-source is the same as its last source (by comparing their object references) and does not enumerate the ISingleResult instance for […]

Android : HowTo Sauvegarde de l’état de l’application

Comme précisé plus haut, Android détruit votre vue en cas de changement d’orientation pour construire la nouvelle vue. Donc vous voulez peut être sauvegarder des données avant le changement d’orientation, par exemple si l’utilisateur a commencé à saisir du texte. Pour résoudre ce problème, il suffit d’utiliser la méthode onSaveInstanceState(). Cette méthode est appelée à […]

Teamviewer 7.0.12142

Download page @ Teamviewer.com As usual, new version means upgrade… Download full v7.0.12142 Download Quick support v7.0.12142 or Cybernet Quick support v7.0.12142 And the portable apps for usb keys portable version does not allow to store configuration Download Teamviewer portable v7.0.12142 Tips : when using a portable version, you could create shortcuts with hard coded […]