System.ApplicationException Class
Information   Base Types   Related Resources

The exception that is thrown when a non-fatal application error occurs.

  • Namespace: System
  • First seen in: .NET v1.0.3705
  • Last seen in: .NET v1.1.4322
  • Last changed in: .NET v1.0.3705
  • Assembly: mscorlib.dll

  • System.Exception
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (27)Discussions (253)MembersRotorChanges
    Articles

    Page: 12
    .NET Anatomy - Structured Exception Handling in .NET
    DotNetJunkies
    This article discusses structured exception handling (SEH), a service built into the core of .NET and available to all languages supported by it. Since the infrastructure for this service is built-in, there is very little code required to take full advantage of these features.
    .NET Anatomy – Structured Exception Handling in .NET
    DotNetJunkies
    This article discusses structured exception handling (SEH), a service built into the core of .NET and available to all languages supported by it. Since the infrastructure for this service is built-in, there is very little code required to take full advantage of these features.
    A Docking Control That Can Be Dragged And Resized by the User
    The Code Project
    One of the first features of C# that took my interest was the ability to Dock a Control onto the edge of a Form. Now I could attach a Control (or more likely a composite control by deriving from UserControl) onto a Form edge and quickly construct a useful looking application. But there is one crucial factor missing from this scenario. The user has no discretion over the size or positioning of this docked control. I want the user to be able to drag the control to a different edge and be able to resize the control so that they can customise the application area to suit their own preferences.
    An introduction to Web Service Security using WSE - Part I
    The Code Project
    This article explains the first steps to build secure Web Services. It introduces the WSE specification and a first authenication mechnism based on username identifiction and password validation.
    An introduction to Web Service Security using WSE - Part I
    The Code Project
    This article explains the first steps to build secure Web Services. It introduces the WSE specification and the easiest authentication mechanism based on username identification and password validation.
    ASP.NET 2.0's Client Callback Feature
    DotNetJunkies
    One of the most overlooked features of ASP.NET 2.0, part of Visual Studio 2005 or "Whidbey", is the Client Callback feature. This feature allows you to programmatically call server-side methods through client-side JavaScript code without the need for posting back the page. This article describes how to use the Client Callback feature to implement your own callback scenario and introduces the new TreeView control that has this feature built in.
    Automated Registration of Visual Studio Custom Tools
    The Code Project
    Describes a utility to simplify the registration of a VS.NET custom tool
    BUG: IWAM Account Is Not Granted the Impersonate Privilege for ASP.NET 1.1 on a Windows 2000 Domain Controller with SP4
    http://www.kbalertz.com/
    (824308) - When you install ASP.NET 1.1 on a computer running on a Windows 2000 Server domain controller with Service Pack 4 (SP4) installed, the IWAM account is not granted impersonate user rights for ASP.NET 1.1. When you request an ASP.NET 1.1 page, you may...
    BUG: IWAM Account Is Not Granted the Impersonate Privilege for ASP.NET 1.1 on a Windows 2000 Domain Controller with SP4
    Microsoft Support
    (824308) - When you install ASP.NET 1.1 on a computer running on a Windows 2000 Server domain controller with Service Pack 4 (SP4) installed, the IWAM account is not granted impersonate user rights for ASP.NET 1.1. When you request an ASP.NET 1.1 page, you may...
    Building an N-Tier Application in .NET
    MSDN
    After reviewing the types of n-tier applications, you'll learn how to create a typed dataset that can return data from a Web service and consume a Web service from a Windows application.
    Building Custom Providers for ASP.NET 2.0 Membership
    MSDN
    Build a custom provider based on Microsoft Active Directory Application Mode for the ASP.NET 2.0 Membership Service.
    Creating a Smart Base Factory Pattern
    DotNetJunkies
    Factory design patterns are a common approach used to help decouple object creation and instantiation from the client. In this tutorial, we will implement a slight twist on a standard factory pattern, devising a project dynamically capable of instantiating and providing information on new or removed concrete objects.
    Creating Custom Web Controls with ASP.NET 2.0
    MSDN
    The new adaptive rendering model in ASP.NET 2.0 provides a number of new options for control writers. This article shows how those options make creating custom controls for ASP.NET easier than before.
    Creating multilingual websites - Part 1
    The Code Project
    Extend the existing globalization capabilities of .NET to create flexible and powerful multilgual web sites. First, create a custom ResourceManager, and then create custom localized-capable server controls to easily deploy multilingual functionality.
    Declarative QueryString Parameter Binding
    The Code Project
    Describes using reflection to automatically populate member parameters from the Form and Querystring.
    Dockable Control In C#
    C# Help
    edge and quickly construct a useful looking application. But there is one crucial factor missing from this scenario. The user has no discretion over the size or positioning of this docked control. I want the user to be able to drag the control to a different edge and be able to resize the control so that they can customise the application area to suit their own preferences.
    Docking Control
    C# Corner
    One of the first features of C# that took my interest was the ability to Dock a Control onto the edge of a Form. Now I could attach a Control (or more likely a composite control by deriving from UserControl) onto a Form edge and quickly construct a useful looking application. But there is one crucial factor missing from this scenario. The user has no discretion over the size or positioning of this docked control. I want the user to be able to drag the control to a different edge and be able to resize the control so that they can customise the application area to suit their own preferences.
    Doing Collections with Inheritance
    MSDN
    I've heard Microsoft® Visual Basic® 6.0 developers say things like "Well, I don't really need inheritance in my object designs." They wonder why getting inheritance in Microsoft® Visual Basic® .NET is such a big deal. I think many of these developers have really needed inheritance all along—they just didn't realize it. To see why, let's look at how collections are managed in Visual Basic 6.0, and then how things change in Visual Basic. NET. I should first point out that if you don't use collections in your object designs, then you are not really using object orientation in depth. It's probably appropriate for you to invest some more time in object-oriented philosophy, because that understanding is central to using .NET most effectively.
    Error handling in ASP.NET applications
    DotNetJunkies
    Even though you take lot of care in designing your application errors do occur. In case of web applications the chances of errors still increase because of its nature. In this article we will see various error handling techniques. Our focus will be on ASP.NET web applications though many of the concepts are applicable to other types of applications as well. Download includes a full sample application!
    Error Handling in Visual Basic .NET
    MSDN
    Discusses how error handling differs between Visual Basic .NET and Visual Basic 6.0. Main topics include Try/Catch blocks, Exception objects, procedure callers, and how to create your own Exception classes.
    Exception Management in .NET
    MSDN
    This document discusses design and implementation guidelines for exception management systems that use .NET technologies. It focuses on the process of handling exceptions within .NET applications in a highly maintainable and supportable manner.
    Hive Multi-Validating Self Textbox Control (Final Version)
    The Code Project
    Combines textbox, multi-validation and response labels in one control. Allows textbox to do self checking and self error response messages. Control can protect against sql injection attacks and client script attacks with a special character set property.
    Investigating Code Snippet Technology
    MSDN
    Examines the process of building and registering custom code expansions with your Microsoft .NET IDE of choice.
    MultiException: Type-Safe Collections without CollectionBase
    The Code Project
    I had been working on a base class for reading and writing to a database. I knew that when a new object (and hence record) was created there needed to be a mechanism for setting default values. I also knew that even with the default values there might not be enough information that the object could be saved.
    Rich Custom Error Handling with ASP.NET
    MSDN
    Add your own custom error handling to your ASP.NET Web applications to ease debugging and improve customer satisfaction.
    Ad
    MBR BootFX
    Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
     
     Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
    Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com