Welcome to Tech-Review.Org Sign in | Join | Help

.net_2.0

My coding blog entries. Typically will either be more complex coding examples or overcoming product issues / troubleshooting resolutions.

Browse by Tags

All Tags » c#   (RSS)
System.Security.SecurityException: The source was not found, but some or all event logs could not be searched. Inaccessible logs:
Adding Event logging works the same with VISTA as it does in XP. Unfortunately there is no programmic method to make it work the first time. The symptoms are you check and check the event logs to see where your entries are but alas nothing. Under VISTA Read More...
Concrete Example: Convert Hashtable to Dictionary (Generics)
This entry will be short and sweet. After trying to find some kind of guide for converting from Hashtables - to using the generics Dictionary...I wanted to provide a more complex yet simple code comparision. In this example the first code snippet is the Read More...
Gridviews: Select / De-Select all Records without Javascript using Checkbox in Header
8 hours of combing through blogs, forum posts and books to find a spcific answer to a specific problem. You see it all the time on sites like Yahoo Mail, where there is a convienent checkbox in the the header of a table / gridview that selects or de-selects Read More...
Gridviews and adding empty rows for display purposes only.
On my Sites-Easy project, all of the Administrative features use Ajax, Gridviews, and ModalPopups to present a UI that is consistent. This consistency is obtained by using abstract classes and delegates so that creating new Administrative Modules is almost Read More...
Building SQL Queries Automatically in C# using Generics
I have been looking for methods to get rid of redundant code throughout my Sites-Easy Project. The biggest issue I have is the redundancy of all of the DAL methods. For instance I have the ability to add a Section that contains 40 some parameters, but Read More...
New Ajax ToolKit Out..Links..
Today was released a new 'official' release of the Ajax Toolkit . It apparently solves some issues with viewstate, gives the modalpopup some additional scenarios to be worked in, and a few other updates...but. If you run a DGS (dynamically generated site), Read More...
Part 4 - Building a Submission Form that Saves In Progress Drafts (MSFT AJAX)
Today's entry will outline some of the bugs with previous code. For some reason code that works absolutely fine in my normal project solutions did not work with the Web Application Project solution the AjaxToolkit uses. Thus - I glad to report we have Read More...