ASP.NET's tag archives

RadioButtonList within a GridView using the AJAX UpdatePanel

Posted under Article, ASP.NET, Development on Tuesday, 28 July 2009 by
This simple but extremely useful trick explains how to hande a radiobutton within an ASP.NET gridview, without having to fiddle around with the sometimes cumbersome beast that javascript is. To avoid postbacks, we'll be using ASP.NET AJAX's updatepanel. Basically, the logic is grabbing the...
RadioButtonList within a GridView using the AJAX UpdatePanel

How can I speed up hashtable lookups with struct object as keys?

Posted under Article, ASP.NET, Development on Monday, 13 July 2009 by
When you have struct objects as the key in a hashtable, the lookup operation of the hashtable performs miserably. This can be attributes to the GetHashCode() function which is used internally to do the lookup. If a struct contains only simple value types (int, short, etc.), the algorithm which...
How can I speed up hashtable lookups with struct object as keys?

WMI Functions from ASP.NET

Posted under Article, ASP.NET, Development on Monday, 13 July 2009 by
Introduction This article demonstrates how to use WMI in ASP.NET to create a website, add a virtual folder, and add host headers. I have tested it using Windows Server 2003 and IIS 6. It took me three days to get it working, some hours to write the code, and the remaining time finding out why...
WMI Functions from ASP.NET