| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- using System.Web.Optimization;
- using System.Web.Routing;
- namespace NEducation
- {
- public class MvcApplication : System.Web.HttpApplication
- {
- protected void Application_Start()
- {
- AreaRegistration.RegisterAllAreas();
- FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
- RouteConfig.RegisterRoutes(RouteTable.Routes);
- BundleConfig.RegisterBundles(BundleTable.Bundles);
- log4net.Config.XmlConfigurator.Configure();
- }
- protected void Application_BeginRequest(object sender, EventArgs e)
- {
- HttpCookie cookie = HttpContext.Current.Request.Cookies["Language"];
- if (cookie != null && cookie.Value != null)
- {
- System.Diagnostics.Debug.WriteLine("cookie: " + cookie.Value);
- System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(cookie.Value);
- System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(cookie.Value);
- }
- else
- {
- System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("km");
- System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("km");
- }
- }
- }
- }
|