Skip to content

Commit fe1faeb

Browse files
committed
first commit
0 parents  commit fe1faeb

File tree

926 files changed

+667720
-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.

926 files changed

+667720
-0
lines changed

.vs/MyEcommerceProject/config/applicationhost.config

Lines changed: 1024 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"Version": 1,
3+
"ProjectMap": {
4+
"44314397-d4cd-41af-97f5-74e923ab4776": {
5+
"ProjectGuid": "44314397-d4cd-41af-97f5-74e923ab4776",
6+
"DisplayName": "MyEcommerceAdmin",
7+
"ColorIndex": 0
8+
}
9+
},
10+
"NextColorIndex": 1
11+
}

.vs/MyEcommerceProject/v16/.suo

207 KB
Binary file not shown.

.vs/MyEcommerceProject/v17/.suo

154 KB
Binary file not shown.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.Mvc;
6+
using System.Web.Routing;
7+
8+
namespace MyEcommerceAdmin
9+
{
10+
public class RouteConfig
11+
{
12+
public static void RegisterRoutes(RouteCollection routes)
13+
{
14+
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
15+
16+
routes.MapRoute(
17+
name: "Default",
18+
url: "{controller}/{action}/{id}",
19+
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
20+
);
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)