Skip to content

Commit be484c7

Browse files
Revert Starting Versions
1 parent 507eace commit be484c7

File tree

198 files changed

+81977
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+81977
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvcSample", "ASP.NET_MVC_Front_End\MvcSample.csproj", "{2F86AEB9-42E2-452A-A97A-D372D98BFE70}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{2F86AEB9-42E2-452A-A97A-D372D98BFE70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{2F86AEB9-42E2-452A-A97A-D372D98BFE70}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{2F86AEB9-42E2-452A-A97A-D372D98BFE70}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{2F86AEB9-42E2-452A-A97A-D372D98BFE70}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System.Web.Optimization;
2+
3+
namespace MvcSample
4+
{
5+
public class BundleConfig
6+
{
7+
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
8+
public static void RegisterBundles(BundleCollection bundles)
9+
{
10+
11+
}
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System.Web;
2+
using System.Web.Mvc;
3+
4+
namespace MvcSample
5+
{
6+
public class FilterConfig
7+
{
8+
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
9+
{
10+
filters.Add(new HandleErrorAttribute());
11+
}
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using System.Web.Mvc;
2+
using System.Web.Routing;
3+
4+
namespace MvcSample
5+
{
6+
public class RouteConfig
7+
{
8+
public static void RegisterRoutes(RouteCollection routes)
9+
{
10+
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
11+
12+
routes.MapRoute(
13+
name: "document-viewer",
14+
url: "document-viewer/{action}/{id}",
15+
defaults: new { controller = "Viewer", action = "Index", id = UrlParameter.Optional }
16+
);
17+
18+
19+
routes.MapRoute(
20+
name: "Default",
21+
url: "{controller}/{action}/{id}",
22+
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
23+
);
24+
}
25+
}
26+
}

Showcases/ASP.NET_MVC_Front_End/ASP.NET_MVC_Front_End/Content/CSS/bootstrap.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Showcases/ASP.NET_MVC_Front_End/ASP.NET_MVC_Front_End/Content/CSS/dialog.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Showcases/ASP.NET_MVC_Front_End/ASP.NET_MVC_Front_End/Content/CSS/groupdocsViewer.all.css

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)