Click here to Skip to main content
15,886,724 members
Articles / Web Development / ASP.NET

Exception Handling & Logging Application Block: Enterprise Library 1.0

Rate me:
Please Sign up or sign in to vote.
3.66/5 (34 votes)
1 May 2005CPOL4 min read 321.4K   2.5K   78  
This article illustrates how to log your Exception into trace.log file using Enterprise Library of .NET Framework.
/* Created By: Santosh poojari
  Date Of Creation:24/04/04
  Date Of modified:
  Query :Santosh_poojari@rediffmail.com
 
 */

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using Microsoft.Practices.EnterpriseLibrary.ExceptionHandling;
using Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging;

namespace ExceptionConfiguration_block
{
	/// <summary>
	/// Summary description for WebForm1.
	/// </summary>
	public class WebForm1 : System.Web.UI.Page
	{
		protected System.Web.UI.WebControls.Button btnException;
	
		private void Page_Load(object sender, System.EventArgs e)
		{
			// Put user code to initialize the page here
		}

		#region Web Form Designer generated code
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{    
			this.btnException.Click += new System.EventHandler(this.btnException_Click);
			this.Load += new System.EventHandler(this.Page_Load);

		}
		#endregion

		public void btnException_Click(object sender, System.EventArgs e)
		{
			try{
			int i=5;
				int j=0;
					int z=i/j;


			}
			catch(Exception ex)
			{
				bool rethrow = ExceptionPolicy.HandleException(ex, "Business Layer Policy");
				if (rethrow)
				{
					throw;
				}
			
			}
			finally
			{

			}
		
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Australia Australia
Whatsup-->Exploring--> MVC/HTML5/Javascript & Virtualization.......!
www.santoshpoojari.blogspot.com

Comments and Discussions