-
Recent Posts
Archives
- January 2012
- June 2010
- March 2010
- January 2010
- December 2009
- November 2009
- August 2009
- June 2009
- February 2009
- January 2009
- December 2008
- November 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- June 2007
- May 2007
- April 2007
- March 2007
- December 2006
- November 2006
- September 2006
- August 2006
- September 2005
Categories
Meta
Category Archives: ASP.NET
Global.asax event handling internals (part 3 of 3)
// In HttpApplicationFactory private void HookupEventHandlersForAppplicationAndModules(MethodInfo[] handlers) { // handlers receives a list of Global’s methods. for (int num1 = 0; num1 < handlers.Length; num1++) { MethodInfo info1 = handlers[num1]; string text1 = info1.Name; … Continue reading
Posted in ASP.NET
Leave a comment
Global.asax event handling internals (part 2 of 3)
// HttpApplication class, from which Global is derived. private void ReflectOnApplicationType() { // Enumerates all Global and it’s wrapper methods.. ArrayList list1 = new ArrayList(); MethodInfo[] infoArray1 = this._theApplicationType.GetMethods(BindingFlags.NonPublic | (BindingFlags.Public | (BindingFlags.Static | BindingFlags.Instance))); MethodInfo[] … Continue reading
Posted in ASP.NET
Leave a comment
Global.asax event handling internals (part 1 of 3)
Some days ago I and another project member were seeing the best way to catch unhandled exceptions in ASP.NET. We found the Global.Application_Error method in Global.asax which them. Besides Application_Error, Visual Studio creates some other methods for handling events in … Continue reading
Posted in ASP.NET
Leave a comment
ASP.NET validation internals
The article is somewhat old, but it still deserves a visit from whom, like me is studying for 70-305 or 70-315: ASP.NET Validation in Depth
Posted in ASP.NET
Leave a comment