À ÀÏÆÅ»³ÔÐ6¸öÔ Dec 16, 2005 #1 how can i override the "ArgumentOutOfRangeException" or catch it in my dorpdownlist?
R Rob Schieber Dec 16, 2005 #2 ÀÏÆÅ»³ÔÐ6¸öÔ said: how can i override the "ArgumentOutOfRangeException" or catch it in my dorpdownlist? Click to expand... try { your code... } catch(ArgumentOutOfRangeException ex) { handle ex... } However, I would suggest implementing your code in a way that this exception does not occur in the first place.
ÀÏÆÅ»³ÔÐ6¸öÔ said: how can i override the "ArgumentOutOfRangeException" or catch it in my dorpdownlist? Click to expand... try { your code... } catch(ArgumentOutOfRangeException ex) { handle ex... } However, I would suggest implementing your code in a way that this exception does not occur in the first place.