Skip to content

Commit a6e65f1

Browse files
committed
Add project files.
1 parent b432667 commit a6e65f1

File tree

80 files changed

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

80 files changed

+74458
-0
lines changed

Controllers/HelloWorldController.cs

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
using FirstMVCApp.Models;
2+
3+
using Microsoft.AspNetCore.Mvc;
4+
5+
namespace FirstMVCApp.Controllers;
6+
public class HelloWorldController : Controller
7+
{
8+
9+
static readonly List<DogViewModel> dogs = new();
10+
public IActionResult Index()
11+
{
12+
return View(dogs);
13+
}
14+
15+
public IActionResult Create()
16+
{
17+
var dogVM = new DogViewModel();
18+
return View(dogVM);
19+
}
20+
21+
public IActionResult CreateDog(DogViewModel viewModel)
22+
{
23+
dogs.Add(viewModel);
24+
return RedirectToAction(nameof(Index));
25+
}
26+
27+
public string Hello()
28+
{
29+
return "whose theree";
30+
}
31+
32+
33+
34+
}

Controllers/HomeController.cs

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
using System.Diagnostics;
2+
3+
using FirstMVCApp.Models;
4+
5+
using Microsoft.AspNetCore.Mvc;
6+
7+
namespace FirstMVCApp.Controllers;
8+
9+
public class HomeController : Controller
10+
{
11+
private readonly ILogger<HomeController> _logger;
12+
13+
public HomeController(ILogger<HomeController> logger)
14+
{
15+
_logger = logger;
16+
}
17+
18+
public IActionResult Index()
19+
{
20+
return View();
21+
}
22+
23+
public IActionResult Privacy()
24+
{
25+
return View();
26+
}
27+
28+
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
29+
public IActionResult Error()
30+
{
31+
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
32+
}
33+
}

FirstMVCApp.csproj

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
</PropertyGroup>
8+
9+
</Project>

FirstMVCApp.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.2.32630.192
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FirstMVCApp", "FirstMVCApp.csproj", "{9124B26D-1260-4CB0-A514-1BD0E4D81AA2}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{9124B26D-1260-4CB0-A514-1BD0E4D81AA2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{9124B26D-1260-4CB0-A514-1BD0E4D81AA2}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{9124B26D-1260-4CB0-A514-1BD0E4D81AA2}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{9124B26D-1260-4CB0-A514-1BD0E4D81AA2}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {5B0F0E3A-986A-4ABD-A84B-F40FD0152721}
24+
EndGlobalSection
25+
EndGlobal

Models/DogViewModel.cs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
namespace FirstMVCApp.Models;
2+
3+
public class DogViewModel
4+
{
5+
public string? Name
6+
{
7+
get; set;
8+
}
9+
public int? Age
10+
{
11+
get; set;
12+
}
13+
}

Models/ErrorViewModel.cs

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace FirstMVCApp.Models {
2+
public class ErrorViewModel {
3+
public string? RequestId { get; set; }
4+
5+
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
6+
}
7+
}

Program.cs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
var builder = WebApplication.CreateBuilder(args);
2+
3+
// Add services to the container.
4+
builder.Services.AddControllersWithViews();
5+
6+
var app = builder.Build();
7+
8+
// Configure the HTTP request pipeline.
9+
if (!app.Environment.IsDevelopment())
10+
{
11+
app.UseExceptionHandler("/Home/Error");
12+
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
13+
app.UseHsts();
14+
}
15+
16+
app.UseHttpsRedirection();
17+
app.UseStaticFiles();
18+
19+
app.UseRouting();
20+
21+
app.UseAuthorization();
22+
23+
app.MapControllerRoute(
24+
name: "default",
25+
pattern: "{controller=HelloWorld}/{action=Index}/{id?}");
26+
27+
app.Run();

Properties/launchSettings.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"iisSettings": {
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
5+
"iisExpress": {
6+
"applicationUrl": "http://localhost:31931",
7+
"sslPort": 44347
8+
}
9+
},
10+
"profiles": {
11+
"FirstMVCApp": {
12+
"commandName": "Project",
13+
"dotnetRunMessages": true,
14+
"launchBrowser": true,
15+
"applicationUrl": "https://localhost:7143;http://localhost:5143",
16+
"environmentVariables": {
17+
"ASPNETCORE_ENVIRONMENT": "Development"
18+
}
19+
},
20+
"IIS Express": {
21+
"commandName": "IISExpress",
22+
"launchBrowser": true,
23+
"environmentVariables": {
24+
"ASPNETCORE_ENVIRONMENT": "Development"
25+
}
26+
}
27+
}
28+
}

Views/HelloWorld/Create.cshtml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
@model DogViewModel
2+
3+
4+
<h1>Create</h1>
5+
6+
<hr/>
7+
8+
<div class="row">
9+
<div class="col-6">
10+
11+
<div class="card">
12+
13+
<div class="card-header">
14+
<h5>New Dog</h5>
15+
</div>
16+
17+
<div class="card-body">
18+
<form asp-controller="HelloWorld" asp-action="CreateDog" method="post">
19+
<div class="mb-3">
20+
<label class="form-check-label">Name</label>
21+
<input asp-for="Name" type="text" class="form-control" />
22+
</div>
23+
24+
<div class="mb-3">
25+
<label class="form-check-label">Age</label>
26+
<input asp-for="Age" type="number" class="form-control" />
27+
</div>
28+
29+
<div class="mb-3">
30+
<button type="submit" class="btn btn-primary">Save</button>
31+
</div>
32+
</form>
33+
</div>
34+
35+
<div class="card-footer">
36+
</div>
37+
38+
</div>
39+
40+
41+
42+
</div>
43+
</div>

Views/HelloWorld/Index.cshtml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@model List<DogViewModel>
2+
@*
3+
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
4+
*@
5+
@{
6+
}
7+
8+
<h1>List of dogs</h1>
9+
10+
@foreach (var dog in Model)
11+
{
12+
<li>
13+
@dog.Name - @dog.Age
14+
</li>
15+
16+
}

Views/Home/Index.cshtml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@{
2+
ViewData["Title"] = "Home Page";
3+
}
4+
5+
<div class="text-center">
6+
<h1 class="display-4">Welcome</h1>
7+
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
8+
</div>

Views/Home/Privacy.cshtml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@{
2+
ViewData["Title"] = "Privacy Policy";
3+
}
4+
<h1>@ViewData["Title"]</h1>
5+
6+
<p>Use this page to detail your site's privacy policy.</p>

Views/Shared/Error.cshtml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
@model ErrorViewModel
2+
@{
3+
ViewData["Title"] = "Error";
4+
}
5+
6+
<h1 class="text-danger">Error.</h1>
7+
<h2 class="text-danger">An error occurred while processing your request.</h2>
8+
9+
@if (Model.ShowRequestId)
10+
{
11+
<p>
12+
<strong>Request ID:</strong> <code>@Model.RequestId</code>
13+
</p>
14+
}
15+
16+
<h3>Development Mode</h3>
17+
<p>
18+
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred.
19+
</p>
20+
<p>
21+
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
22+
It can result in displaying sensitive information from exceptions to end users.
23+
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
24+
and restarting the app.
25+
</p>

Views/Shared/_Layout.cshtml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>@ViewData["Title"] - FirstMVCApp</title>
7+
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
8+
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
9+
<link rel="stylesheet" href="~/FirstMVCApp.styles.css" asp-append-version="true" />
10+
</head>
11+
<body>
12+
<header>
13+
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
14+
<div class="container-fluid">
15+
<a class="navbar-brand" asp-area="" asp-controller="HelloWorld" asp-action="Index">DogApp</a>
16+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
17+
aria-expanded="false" aria-label="Toggle navigation">
18+
<span class="navbar-toggler-icon"></span>
19+
</button>
20+
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
21+
<ul class="navbar-nav flex-grow-1">
22+
<li class="nav-item">
23+
<a class="nav-link text-dark" asp-area="" asp-controller="HelloWorld" asp-action="Index">Dog list</a>
24+
</li>
25+
<li class="nav-item">
26+
<a class="nav-link text-dark" asp-area="" asp-controller="HelloWorld" asp-action="Create">Create dog</a>
27+
</li>
28+
</ul>
29+
</div>
30+
</div>
31+
</nav>
32+
</header>
33+
<div class="container">
34+
<main role="main" class="pb-3">
35+
@RenderBody()
36+
</main>
37+
</div>
38+
39+
<footer class="border-top footer text-muted">
40+
<div class="container">
41+
&copy; 2022 - FirstMVCApp - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
42+
</div>
43+
</footer>
44+
<script src="~/lib/jquery/dist/jquery.min.js"></script>
45+
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
46+
<script src="~/js/site.js" asp-append-version="true"></script>
47+
@await RenderSectionAsync("Scripts", required: false)
48+
</body>
49+
</html>

Views/Shared/_Layout.cshtml.css

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
2+
for details on configuring this project to bundle and minify static web assets. */
3+
4+
a.navbar-brand {
5+
white-space: normal;
6+
text-align: center;
7+
word-break: break-all;
8+
}
9+
10+
a {
11+
color: #0077cc;
12+
}
13+
14+
.btn-primary {
15+
color: #fff;
16+
background-color: #1b6ec2;
17+
border-color: #1861ac;
18+
}
19+
20+
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
21+
color: #fff;
22+
background-color: #1b6ec2;
23+
border-color: #1861ac;
24+
}
25+
26+
.border-top {
27+
border-top: 1px solid #e5e5e5;
28+
}
29+
.border-bottom {
30+
border-bottom: 1px solid #e5e5e5;
31+
}
32+
33+
.box-shadow {
34+
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
35+
}
36+
37+
button.accept-policy {
38+
font-size: 1rem;
39+
line-height: inherit;
40+
}
41+
42+
.footer {
43+
position: absolute;
44+
bottom: 0;
45+
width: 100%;
46+
white-space: nowrap;
47+
line-height: 60px;
48+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<script src="~/lib/jquery-validation/dist/jquery.validate.min.js"></script>
2+
<script src="~/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"></script>

Views/_ViewImports.cshtml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@using FirstMVCApp
2+
@using FirstMVCApp.Models
3+
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

0 commit comments

Comments
 (0)