-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGlobal.asax.cs
37 lines (34 loc) · 1.24 KB
/
Global.asax.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using LMSweb.App_Start;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Helpers;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace LMSweb
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
GlobalConfiguration.Configure(WebApiConfig.Register);
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
BundleTable.EnableOptimizations = true;
AntiForgeryConfig.UniqueClaimTypeIdentifier = System.Security.Claims.ClaimTypes.Name;
//HttpCookie cLang = Request.Cookies["Lang"];
//if (cLang != null)
//{
// System.Threading.Thread.CurrentThread.CurrentCulture
// = new System.Globalization.CultureInfo(cLang.Value);
// System.Threading.Thread.CurrentThread.CurrentUICulture
// = new System.Globalization.CultureInfo(cLang.Value);
//}
}
}
}