Meta
Tag Cloud
Category Archives: ASP.NET
Easy pattern for Control state
If you have decided that your WebControl requires to maintain it’s state you will want to figure out how to implement Control state. Most examples on the web will then create an array of objects and then hardcode the indices … Continue reading
Posted in ASP.NET, C#
Leave a comment
Exploring AJAX on the ASP.NET platform
I finally found some time to experiment with AJAX on the ASP.NET platform. The first technique i looked into was Partial-Page Rendering with controls like UpdatePanel. It gave me an awkward feeling but even Dino Esposito, who spent a whole … Continue reading
Posted in ASP.NET
Leave a comment
How does the controller know which action method to invoke?
Yesterday i attended another great VISUG event on ASP.NET presented by Maarten Balliauw. He demonstrated a custom filter but did not dig into the mechanics of action method resolving. With the aid of of the ActionName attribute we can map … Continue reading
Posted in ASP.NET, C#
Leave a comment
Adaptive control behavior: LinkButton without javascript
‘Experiment with Adaptive Control Behavior‘ has been an item on my TO-DO list for a very long time and this weekend i finally found some time to do exactly that. Because i hate it that a LinkButton renders as <a … Continue reading
Posted in ASP.NET, C#
Leave a comment