├── MyMVCApp ├── favicon.ico ├── Views │ ├── _ViewStart.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ └── Web.config ├── Global.asax ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── BundleConfig.cs ├── Content │ ├── Site.css │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ └── bootstrap-theme.css ├── Global.asax.cs ├── Controllers │ └── HomeController.cs ├── Web.Debug.config ├── Web.Release.config ├── Properties │ └── AssemblyInfo.cs ├── packages.config ├── Web.config ├── Scripts │ ├── jquery.validate.unobtrusive.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.min.js │ └── bootstrap.min.js ├── ApplicationInsights.config └── MyMVCApp.csproj ├── MyMVCApp.sln ├── .gitattributes └── .gitignore /MyMVCApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MyMVCApp/HEAD/MyMVCApp/favicon.ico -------------------------------------------------------------------------------- /MyMVCApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /MyMVCApp/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="MyMVCApp.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /MyMVCApp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MyMVCApp/HEAD/MyMVCApp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /MyMVCApp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MyMVCApp/HEAD/MyMVCApp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /MyMVCApp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MyMVCApp/HEAD/MyMVCApp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /MyMVCApp/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MyMVCApp/HEAD/MyMVCApp/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /MyMVCApp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |
Use this area to provide additional information.
8 | -------------------------------------------------------------------------------- /MyMVCApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace MyMVCApp 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MyMVCApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.
8 | 9 |15 | ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that 16 | enables a clean separation of concerns and gives you full control over markup 17 | for enjoyable, agile development. 18 |
19 | 20 |NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.
24 | 25 |You can easily find a web hosting company that offers the right mix of features and price for your applications.
29 | 30 |