"; // id; // RouteData.Values["id"];
+ return View();
+ }
+ }
+}
\ No newline at end of file
diff --git a/UrlsAndRoutes/Global.asax b/UrlsAndRoutes/Global.asax
new file mode 100644
index 0000000..75837d7
--- /dev/null
+++ b/UrlsAndRoutes/Global.asax
@@ -0,0 +1 @@
+<%@ Application Codebehind="Global.asax.cs" Inherits="UrlsAndRoutes.MvcApplication" Language="C#" %>
diff --git a/UrlsAndRoutes/Global.asax.cs b/UrlsAndRoutes/Global.asax.cs
new file mode 100644
index 0000000..129167d
--- /dev/null
+++ b/UrlsAndRoutes/Global.asax.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.Mvc;
+using System.Web.Routing;
+
+namespace UrlsAndRoutes
+{
+ public class MvcApplication : System.Web.HttpApplication
+ {
+ protected void Application_Start()
+ {
+ AreaRegistration.RegisterAllAreas();
+ RouteConfig.RegisterRoutes(RouteTable.Routes);
+ }
+ }
+}
diff --git a/UrlsAndRoutes/Properties/AssemblyInfo.cs b/UrlsAndRoutes/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..74e5eb9
--- /dev/null
+++ b/UrlsAndRoutes/Properties/AssemblyInfo.cs
@@ -0,0 +1,35 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("UrlsAndRoutes")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("UrlsAndRoutes")]
+[assembly: AssemblyCopyright("Copyright © 2017")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("fd2bdad8-1914-4278-a6d4-733d64ccb77d")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Revision and Build Numbers
+// by using the '*' as shown below:
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/UrlsAndRoutes/UrlsAndRoutes.csproj b/UrlsAndRoutes/UrlsAndRoutes.csproj
new file mode 100644
index 0000000..181f269
--- /dev/null
+++ b/UrlsAndRoutes/UrlsAndRoutes.csproj
@@ -0,0 +1,162 @@
+
+
+
+
+
+ Debug
+ AnyCPU
+
+
+ 2.0
+ {FD2BDAD8-1914-4278-A6D4-733D64CCB77D}
+ {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}
+ Library
+ Properties
+ UrlsAndRoutes
+ UrlsAndRoutes
+ v4.5.2
+ true
+
+
+
+
+
+
+
+
+
+ true
+ full
+ false
+ bin\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ true
+ pdbonly
+ true
+ bin\
+ TRACE
+ prompt
+ 4
+
+
+
+ ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ..\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll
+
+
+ ..\packages\Microsoft.AspNet.Webpages.3.2.3\lib\net45\System.Web.Webpages.dll
+
+
+ ..\packages\Microsoft.AspNet.Webpages.3.2.3\lib\net45\System.Web.Webpages.Deployment.dll
+
+
+ ..\packages\Microsoft.AspNet.Webpages.3.2.3\lib\net45\System.Web.Webpages.Razor.dll
+
+
+ ..\packages\Microsoft.AspNet.Webpages.3.2.3\lib\net45\System.Web.Helpers.dll
+
+
+ ..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll
+
+
+ ..\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Global.asax
+
+
+
+
+
+
+
+
+
+ Web.config
+
+
+ Web.config
+
+
+
+
+
+
+
+
+
+ 10.0
+ $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
+
+
+
+
+
+
+
+
+ True
+ True
+ 20903
+ /
+ http://localhost:20903/
+ False
+ False
+
+
+ False
+
+
+
+
+
+
+ This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/UrlsAndRoutes/Views/Home/CustomVariable.cshtml b/UrlsAndRoutes/Views/Home/CustomVariable.cshtml
new file mode 100644
index 0000000..2402b0d
--- /dev/null
+++ b/UrlsAndRoutes/Views/Home/CustomVariable.cshtml
@@ -0,0 +1,17 @@
+@{
+ Layout = null;
+}
+
+
+
+
+
+
+ Custom Variable
+
+
+ The controller is: @ViewBag.Controller
+ The action is: @ViewBag.Action
+ The Custom variable is: @ViewBag.CustomVariable
+
+
diff --git a/UrlsAndRoutes/Views/Shared/ActionName.cshtml b/UrlsAndRoutes/Views/Shared/ActionName.cshtml
new file mode 100644
index 0000000..e0fc06f
--- /dev/null
+++ b/UrlsAndRoutes/Views/Shared/ActionName.cshtml
@@ -0,0 +1,16 @@
+@{
+ Layout = null;
+}
+
+
+
+
+
+
+ ActionName
+
+
+ The controller is: @ViewBag.Controller
+ The action is: @ViewBag.Action
+
+
diff --git a/UrlsAndRoutes/Views/web.config b/UrlsAndRoutes/Views/web.config
new file mode 100644
index 0000000..fdb140c
--- /dev/null
+++ b/UrlsAndRoutes/Views/web.config
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/UrlsAndRoutes/Web.Debug.config b/UrlsAndRoutes/Web.Debug.config
new file mode 100644
index 0000000..fae9cfe
--- /dev/null
+++ b/UrlsAndRoutes/Web.Debug.config
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/UrlsAndRoutes/Web.Release.config b/UrlsAndRoutes/Web.Release.config
new file mode 100644
index 0000000..da6e960
--- /dev/null
+++ b/UrlsAndRoutes/Web.Release.config
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/UrlsAndRoutes/Web.config b/UrlsAndRoutes/Web.config
new file mode 100644
index 0000000..43634a3
--- /dev/null
+++ b/UrlsAndRoutes/Web.config
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/UrlsAndRoutes/packages.config b/UrlsAndRoutes/packages.config
new file mode 100644
index 0000000..262d240
--- /dev/null
+++ b/UrlsAndRoutes/packages.config
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file