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

Race to Linux - Race 3: Reports Starter Kit using Mono SqlServer/Firebird

Rate me:
Please Sign up or sign in to vote.
2.33/5 (2 votes)
30 Sep 20052 min read 52.9K   328   15  
Reports Starter Kit port to Linux using Mono
using System;
using System.Collections;
using System.ComponentModel;
using System.Web;
using System.Web.SessionState;
using System.Threading;
using System.Globalization;
using System.Resources;
using System.Reflection;

namespace ASPNET.StarterKit.Reports 
{
	public class Global : System.Web.HttpApplication
	{
		// Configuation constants used for retrieving application setting values from the
		// web.config file.
		public const string CfgKeyConnString = "ConnectionString";
		public const string CfgKeyProvider = "DataProvider";

		public Global()
		{
			InitializeComponent();
		}	

		protected void Application_BeginRequest(Object sender, EventArgs e)
		{
			// For each request initialize the culture values with
			// the user language as specified by the browser.
			try 
			{
				Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(Request.UserLanguages[0]);
			}
			catch(Exception) 
			{
				// provide fallback for not supported languages.
				Thread.CurrentThread.CurrentCulture = new CultureInfo("en-us");
			}

			Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;

			// This statement causes all future currency values displayed by the application 
			// to use "$" as the currency symbol regardless of the current culture.
			CultureInfo.CurrentCulture.NumberFormat.CurrencySymbol = "$";
		}

		//*********************************************************************
		//
		// GetApplicationPath Method
		//
		// This method returns the correct relative path when installing
		// the portal on a root web site instead of virtual directory
		//
		//*********************************************************************

		public static string GetApplicationPath(HttpRequest request) 
		{
			string path = string.Empty;
			try 
			{
				if(request.ApplicationPath != "/")
					path = request.ApplicationPath;
			}
			catch (Exception e)
			{
				throw e;
			}
			return path;
		}

		#region Web Form Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{    
		}
		#endregion
	}
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Uruguay Uruguay
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions