Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created December 21, 2013 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masaru-b-cl/8066120 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/8066120 to your computer and use it in GitHub Desktop.
One ASP.NET Calendar 2013 - Global.asax.cs
using System;
using System.Web.Routing;
namespace FriendlyURLsSample
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
RouteConfig.RegisterRoutes(RouteTable.Routes); // <- FriendlyURLsを有効に
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment