September 9, 2012, 7:59 pm
This post is programming related and has nothing to do with electronics. I have not written anything programming related topics lately, but this one is worth sharing as it is related to an rather obscure error. Continue reading ‘COMException (0×80072020)’ »
September 9, 2008, 9:08 pm
Today I encountered a rather obscure error while maintaining some old ASP.Net code (Framework 1.1). Continue reading ‘An Obscure System.Web.Mail Error Message’ »
August 17, 2008, 10:56 pm
In the previous three posts(I, II, III), I showed you how to inherit from GridView control to create an extended control that can bind to a generic list of objects. In this final post of the series, I will show you a simple example to illustrate how to use the GridViewEx control. Continue reading ‘Extending the GridView — Part IV’ »
August 16, 2008, 8:04 pm
In Part II, I showed you how to extend the GridView control so that we can bind a generic list to it. Because GridViewEx inherits from GridView, it has all the functionalities GridView has (i.e. paging). Sometimes, it is desirable to change the number of items displayed on a page dynamically, to accommodate this, we will create a GridViewPager control (ascx). Continue reading ‘Extending the GridView — Part III’ »
August 15, 2008, 8:10 pm
In Part I, I talked about why we needed to extend the GridView and some of the benefit in doing that. In this post, I will discuss how to extend the standard GridView control to take advantage of binding to the type safe value objects mentioned previously. Continue reading ‘Extending the GridView — Part II’ »
August 8, 2008, 8:41 pm
Most business applications require presenting result sets to the end users in the form of some kind of grid views. Continue reading ‘Extending the GridView — Part I’ »
May 3, 2008, 9:13 pm
Typically, there is rarely a need to change a control’s ID. However, this practice is sometimes useful when debugging a custom control, partiularly one that contains dynamically generated controls. Continue reading ‘Unexpected Event Behavior’ »
March 15, 2008, 9:20 pm
I ran into an interesting problem with the Web Setup project in ASP.Net 2.0 last Friday. Continue reading ‘Certain IIS Settings Cause Websetup Failure’ »
February 18, 2008, 12:17 am
I always use Global.asax for centralized error handling in my ASP.Net applications and typically it works great. Continue reading ‘A Stange Issue With Global.asax’ »
February 10, 2008, 2:36 pm
We often need the capability of selecting multiple rows from a grid, unfortunately the GridView component in ASP.Net 2.0 does not offer an out-of-box support for such functionality. Continue reading ‘Multiple Row Selection With GridView’ »
February 3, 2008, 10:48 pm
Reflection is case sensitive by default, which comes at no surprise to most C# developers. Continue reading ‘Reflection and Case Sensitivity’ »
January 21, 2008, 4:46 pm
I ran across an exception "Microsoft JScript runtime error: ‘this._postBackSettings.async’ is null or not an object" the other day while writing some AJAX code with .Net AJAX Extensions for .Net framework 2.0. Continue reading ‘JScript Exception in AJAX Control Toolkit’ »
December 21, 2007, 10:54 pm
Earlier today, while I was trying to bind a collection to a drop down list, I got the following exception: Continue reading ‘Interesting Databinding Behavior’ »
December 8, 2007, 11:17 pm
I recently ran into a very strange problem with ASP.Net 2.0. I have used master pages for a couple of years now, and this is the first time I encountered such an odd problem. Continue reading ‘Weird Master Page Problem’ »
November 7, 2007, 10:39 pm
A few days ago, I was deploying a Website at work and ran into a very mysterious problem. Continue reading ‘A Stange Post Back Problem’ »