23 lines
776 B
Text
23 lines
776 B
Text
|
|
<%@ Application Language="C#" %>
|
||
|
|
<%@ Import Namespace="localhost" %>
|
||
|
|
<%@ Import Namespace="System.Web.Optimization" %>
|
||
|
|
<%@ Import Namespace="System.Web.Routing" %>
|
||
|
|
|
||
|
|
<script runat="server">
|
||
|
|
|
||
|
|
void Application_Start(object sender, EventArgs e)
|
||
|
|
{
|
||
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
||
|
|
BundleConfig.RegisterBundles(BundleTable.Bundles);
|
||
|
|
ScriptManager.ScriptResourceMapping.AddDefinition("jquery",
|
||
|
|
new ScriptResourceDefinition
|
||
|
|
{
|
||
|
|
Path = "~/scripts/jquery-1.11.4.min.js",
|
||
|
|
DebugPath = "~/scripts/jquery-1.11.4.min.js",
|
||
|
|
CdnPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1.min.js",
|
||
|
|
CdnDebugPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1.js"
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|