:::: MENU ::::

Wednesday, January 28, 2009

Daron Yondem provided a solution to refresh UpdatePanels from client side. He built an Extender control (with AjaxControlTookit) and use an invisible textbox as an trigger to raise an async postback. The extender model in ASP.NET AJAX is an light-weight solution to build extensions for existing controls, but these extenders based on AjaxControlToolkit is realy heavy. Using a single extender control build upon AjaxControlToolkit will cause all the...
This example demonstrates three ways to compare two file listings: ·         By querying for a Boolean value that specifies whether the two file lists are identical. ·         By querying for the intersection to retrieve the files that are in both folders. ·        ...
This is a project I've created in CodePlex under Microsoft Public License (Ms-PL). You can find it here. Simple Usage Reflection is one of the most important features of .NET platform. The way of accessing/assigning a property or invoking a method dynamically is widely used by numerous projects. As we all know, invoke-by-reflection is much less efficient than direct access. FastReflectionLib provide the same as part of the refection features...