diff --git "a/\351\255\217\346\205\247\345\251\267/One/Controllers/BlogsController.cs" "b/\351\255\217\346\205\247\345\251\267/One/Controllers/BlogsController.cs" index af6b9595f9d12c0b2eb4f4b52ecce1d43890fc8f..56015b5d59e00ea1691c28383933e7afc2828090 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/Controllers/BlogsController.cs" +++ "b/\351\255\217\346\205\247\345\251\267/One/Controllers/BlogsController.cs" @@ -1,4 +1,5 @@ +using System.Collections; using System.Diagnostics; using Microsoft.AspNetCore.Mvc; using One.Models; @@ -11,9 +12,6 @@ public class BlogsController : Controller var random1 = new Random(); var randomnum1 = random1.Next(0, 10); return Content(randomnum1.ToString()); - var random2 = new Random(); - var randomnum2 = random2.Next(0,100); - return Content(randomnum2.ToString()); } public IActionResult Test2() { @@ -30,8 +28,8 @@ public class BlogsController : Controller for (int i = 0; i < 10; i++) { var randomnum3 = random3.Next(5,81); - list.Add(randomnum3) + list1.Add(randomnum3); } - return Content(randomnum3.ToString()); + return Content(list1.ToString()); } } diff --git "a/\351\255\217\346\205\247\345\251\267/One/Controllers/HomeController.cs" "b/\351\255\217\346\205\247\345\251\267/One/Controllers/HomeController.cs" index dc9ca427dfc68fc4d19fe2d8dbf57a8ef85526f2..b312dbdd6749e7e2fbc4f8aa15f264c8602eebca 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/Controllers/HomeController.cs" +++ "b/\351\255\217\346\205\247\345\251\267/One/Controllers/HomeController.cs" @@ -18,10 +18,7 @@ public class HomeController : Controller return View(); } - public IActionResult Privacy() - { - return View(); - } + public IActionResult B(){ return View(); diff --git "a/\351\255\217\346\205\247\345\251\267/One/Controllers/TableController.cs" "b/\351\255\217\346\205\247\345\251\267/One/Controllers/TableController.cs" new file mode 100644 index 0000000000000000000000000000000000000000..96c4fde7043bcaaaf3e599e52d859fe4e6b4a8e7 --- /dev/null +++ "b/\351\255\217\346\205\247\345\251\267/One/Controllers/TableController.cs" @@ -0,0 +1,25 @@ +using System.Diagnostics; +using Microsoft.AspNetCore.Mvc; +using One.Models; + +namespace One.Controllers; +public class tableController : Controller +{ + public IActionResult Index() + { + return View(Sm.Table); + } + public IActionResult Add() + { + return View(); + } + public IActionResult Edit() + { + return View(); + } + public IActionResult Delete() + { + return View(); + } + +} \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/Models/Sm.cs" "b/\351\255\217\346\205\247\345\251\267/One/Models/Sm.cs" new file mode 100644 index 0000000000000000000000000000000000000000..ec3c181a5581ddd6e4ed4f19a8ff31c739e6a700 --- /dev/null +++ "b/\351\255\217\346\205\247\345\251\267/One/Models/Sm.cs" @@ -0,0 +1,18 @@ +namespace One.Models; +public static class Sm{ + public static List Table {get;set;} + static Sm(){ + Table=[]; + for (int i = 0; i < 10; i++) + { + var tmp=new Table{ + Id=i, + tittle="星期一", + conment="专业课", + author="软件工程" + }; + Table.Add(tmp); + + } + } +} \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/Models/Table.cs" "b/\351\255\217\346\205\247\345\251\267/One/Models/Table.cs" new file mode 100644 index 0000000000000000000000000000000000000000..03c6cec07b784b3a4fddec5f55a0b04eea596768 --- /dev/null +++ "b/\351\255\217\346\205\247\345\251\267/One/Models/Table.cs" @@ -0,0 +1,9 @@ +namespace One.Models; +public class Table{ + public int Id{get;set;} + public string tittle{get;set;} = null!; + public string conment{get;set;} = null!; + public string author{get;set;} = null!; + + +} \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/Views/Home/Privacy.cshtml" "b/\351\255\217\346\205\247\345\251\267/One/Views/Home/Privacy.cshtml" deleted file mode 100644 index af4fb195a3c9183e1a1944162e20f06c8eccce89..0000000000000000000000000000000000000000 --- "a/\351\255\217\346\205\247\345\251\267/One/Views/Home/Privacy.cshtml" +++ /dev/null @@ -1,6 +0,0 @@ -@{ - ViewData["Title"] = "Privacy Policy"; -} -

@ViewData["Title"]

- -

Use this page to detail your site's privacy policy.

diff --git "a/\351\255\217\346\205\247\345\251\267/One/Views/Table/Add.cshtml" "b/\351\255\217\346\205\247\345\251\267/One/Views/Table/Add.cshtml" new file mode 100644 index 0000000000000000000000000000000000000000..a1c223f334d7c3a892c58a4671dbb9a5ffbcbc4e --- /dev/null +++ "b/\351\255\217\346\205\247\345\251\267/One/Views/Table/Add.cshtml" @@ -0,0 +1 @@ +新增 \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/Views/Table/Delete.cshtml" "b/\351\255\217\346\205\247\345\251\267/One/Views/Table/Delete.cshtml" new file mode 100644 index 0000000000000000000000000000000000000000..7e10aba3b85af2b33fdc0acd69ed76d2f228ca3c --- /dev/null +++ "b/\351\255\217\346\205\247\345\251\267/One/Views/Table/Delete.cshtml" @@ -0,0 +1 @@ +删除 \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/Views/Table/Edit.cshtml" "b/\351\255\217\346\205\247\345\251\267/One/Views/Table/Edit.cshtml" new file mode 100644 index 0000000000000000000000000000000000000000..a6b6773eba351c74a746e01702613a9c5ef2db97 --- /dev/null +++ "b/\351\255\217\346\205\247\345\251\267/One/Views/Table/Edit.cshtml" @@ -0,0 +1 @@ +编辑 \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/Views/Table/index.cshtml" "b/\351\255\217\346\205\247\345\251\267/One/Views/Table/index.cshtml" new file mode 100644 index 0000000000000000000000000000000000000000..f21c7d84b1c23ab4c7da55eb16e855d0d1c4815b --- /dev/null +++ "b/\351\255\217\346\205\247\345\251\267/One/Views/Table/index.cshtml" @@ -0,0 +1,33 @@ + +@model List; +
+
+ +
+ 新增 +
+
+
+
+ + + + + + + + @foreach(var item in @Model){ + + + + + + + + } +
Id标题内容作者操作
@item.Id@item.tittle@item.conment@item.author + 编辑 + 删除 +
+ + \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.dll" "b/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.dll" index 01d112bed73c0306a498db0a9e6e6ed9a9dc31ec..7eb5a162a02aec3066c116f625e648940fe3a10e 100644 Binary files "a/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.dll" and "b/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.dll" differ diff --git "a/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.exe" "b/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.exe" index 7c4349cade4c174a69478ca1b6fdc4b481a476b8..2e0f8173a18fdc461bd9991fe93a9c245ad8487b 100644 Binary files "a/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.exe" and "b/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.exe" differ diff --git "a/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.pdb" "b/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.pdb" index 871eb865cb00e652a5904e049444e135911b3efb..152f88dd71ef3fdb092d90a5349c9a38397b1222 100644 Binary files "a/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.pdb" and "b/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.pdb" differ diff --git "a/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.staticwebassets.runtime.json" "b/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.staticwebassets.runtime.json" index ffb83a2378464d19bf67e4d652c14e7e80523ff5..93d68f9281735b0ea0fe8bd216235b5c4d0d3314 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.staticwebassets.runtime.json" +++ "b/\351\255\217\346\205\247\345\251\267/One/bin/Debug/net8.0/One.staticwebassets.runtime.json" @@ -1 +1 @@ -{"ContentRoots":["E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\","E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\obj\\Debug\\net8.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"One.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"One.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\","E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\obj\\Debug\\net8.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"base.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/base.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"One.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"One.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.AssemblyInfo.cs" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.AssemblyInfo.cs" index 176437f4591992500740e15d9cd13dea37f73a49..fa4790455cc83c8df5bac6c1707e992d92484d16 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.AssemblyInfo.cs" +++ "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.AssemblyInfo.cs" @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("One")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e5e2e9aed103076eaed3419a5e08438e55e9a65d")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+19644bef0a7a94cdf765120943ffcf39250ae769")] [assembly: System.Reflection.AssemblyProductAttribute("One")] [assembly: System.Reflection.AssemblyTitleAttribute("One")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.AssemblyInfoInputs.cache" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.AssemblyInfoInputs.cache" index 1f94bf89cdbf679aa022dcdfa5013e3986247a68..0b6a7be263e80cc3480f64a81a2bb098bf072361 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.AssemblyInfoInputs.cache" +++ "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.AssemblyInfoInputs.cache" @@ -1 +1 @@ -671808e1f1a20aae6b5ae6c3c496870814bdc0c3cb2f3bb669a82852b8468ee4 +83767f12d96a60d1d4f7e29af319e95c6711b1babefabd997bb9843d88ece3e4 diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.GeneratedMSBuildEditorConfig.editorconfig" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.GeneratedMSBuildEditorConfig.editorconfig" index c5d122c84d68955c7c6ce94cbd33ac9dc8015376..351e1d0648efc5699c403f6f976dcd1fc8d844dc 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.GeneratedMSBuildEditorConfig.editorconfig" +++ "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.GeneratedMSBuildEditorConfig.editorconfig" @@ -42,10 +42,6 @@ build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxPSy5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = -[E:/大二mvc/grade23-class4-note-mvc/魏慧婷/One/Views/Home/Privacy.cshtml] -build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxQcml2YWN5LmNzaHRtbA== -build_metadata.AdditionalFiles.CssScope = - [E:/大二mvc/grade23-class4-note-mvc/魏慧婷/One/Views/Monday/Student.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcTW9uZGF5XFN0dWRlbnQuY3NodG1s build_metadata.AdditionalFiles.CssScope = @@ -58,6 +54,22 @@ build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s build_metadata.AdditionalFiles.CssScope = +[E:/大二mvc/grade23-class4-note-mvc/魏慧婷/One/Views/Table/Add.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcVGFibGVcQWRkLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[E:/大二mvc/grade23-class4-note-mvc/魏慧婷/One/Views/Table/Delete.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcVGFibGVcRGVsZXRlLmNzaHRtbA== +build_metadata.AdditionalFiles.CssScope = + +[E:/大二mvc/grade23-class4-note-mvc/魏慧婷/One/Views/Table/Edit.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcVGFibGVcRWRpdC5jc2h0bWw= +build_metadata.AdditionalFiles.CssScope = + +[E:/大二mvc/grade23-class4-note-mvc/魏慧婷/One/Views/Table/index.cshtml] +build_metadata.AdditionalFiles.TargetPath = Vmlld3NcVGFibGVcaW5kZXguY3NodG1s +build_metadata.AdditionalFiles.CssScope = + [E:/大二mvc/grade23-class4-note-mvc/魏慧婷/One/Views/_ViewImports.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdJbXBvcnRzLmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.csproj.CoreCompileInputs.cache" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.csproj.CoreCompileInputs.cache" index 82b93bbe76558409b4e87f10381562d4b20b1418..06ff17291e0586139bdf7c3a786d1e8820e2b6e4 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.csproj.CoreCompileInputs.cache" +++ "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.csproj.CoreCompileInputs.cache" @@ -1 +1 @@ -41bc48e759e8d86ce5c159329580dd0a4a776f649d07e732c4228494bdd7efb7 +fe51fdb9cd5b15abd1639e4c256ec8d6b2bd3b1a5cc33082169d5c61a32561e8 diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.csproj.FileListAbsolute.txt" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.csproj.FileListAbsolute.txt" index aa0b5800074fe897e52126960bbce31fbbada2a9..8bb98ece79fed46a6876086e48ae2e7c8258d423 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.csproj.FileListAbsolute.txt" +++ "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.csproj.FileListAbsolute.txt" @@ -28,3 +28,33 @@ E:\大二mvc\grade23-class4-note-mvc\魏慧婷\One\obj\Debug\net8.0\refint\One.d E:\大二mvc\grade23-class4-note-mvc\魏慧婷\One\obj\Debug\net8.0\One.pdb E:\大二mvc\grade23-class4-note-mvc\魏慧婷\One\obj\Debug\net8.0\One.genruntimeconfig.cache E:\大二mvc\grade23-class4-note-mvc\魏慧婷\One\obj\Debug\net8.0\ref\One.dll +E:\One\bin\Debug\net8.0\appsettings.Development.json +E:\One\bin\Debug\net8.0\appsettings.json +E:\One\bin\Debug\net8.0\One.staticwebassets.runtime.json +E:\One\bin\Debug\net8.0\One.exe +E:\One\bin\Debug\net8.0\One.deps.json +E:\One\bin\Debug\net8.0\One.runtimeconfig.json +E:\One\bin\Debug\net8.0\One.dll +E:\One\bin\Debug\net8.0\One.pdb +E:\One\obj\Debug\net8.0\One.GeneratedMSBuildEditorConfig.editorconfig +E:\One\obj\Debug\net8.0\One.AssemblyInfoInputs.cache +E:\One\obj\Debug\net8.0\One.AssemblyInfo.cs +E:\One\obj\Debug\net8.0\One.csproj.CoreCompileInputs.cache +E:\One\obj\Debug\net8.0\One.MvcApplicationPartsAssemblyInfo.cache +E:\One\obj\Debug\net8.0\One.RazorAssemblyInfo.cache +E:\One\obj\Debug\net8.0\One.RazorAssemblyInfo.cs +E:\One\obj\Debug\net8.0\staticwebassets.build.json +E:\One\obj\Debug\net8.0\staticwebassets.development.json +E:\One\obj\Debug\net8.0\staticwebassets\msbuild.One.Microsoft.AspNetCore.StaticWebAssets.props +E:\One\obj\Debug\net8.0\staticwebassets\msbuild.build.One.props +E:\One\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.One.props +E:\One\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.One.props +E:\One\obj\Debug\net8.0\staticwebassets.pack.json +E:\One\obj\Debug\net8.0\scopedcss\Views\Shared\_Layout.cshtml.rz.scp.css +E:\One\obj\Debug\net8.0\scopedcss\bundle\One.styles.css +E:\One\obj\Debug\net8.0\scopedcss\projectbundle\One.bundle.scp.css +E:\One\obj\Debug\net8.0\One.dll +E:\One\obj\Debug\net8.0\refint\One.dll +E:\One\obj\Debug\net8.0\One.pdb +E:\One\obj\Debug\net8.0\One.genruntimeconfig.cache +E:\One\obj\Debug\net8.0\ref\One.dll diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.dll" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.dll" index 01d112bed73c0306a498db0a9e6e6ed9a9dc31ec..7eb5a162a02aec3066c116f625e648940fe3a10e 100644 Binary files "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.dll" and "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.dll" differ diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.pdb" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.pdb" index 871eb865cb00e652a5904e049444e135911b3efb..152f88dd71ef3fdb092d90a5349c9a38397b1222 100644 Binary files "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.pdb" and "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/One.pdb" differ diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/apphost.exe" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/apphost.exe" index 7c4349cade4c174a69478ca1b6fdc4b481a476b8..2e0f8173a18fdc461bd9991fe93a9c245ad8487b 100644 Binary files "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/apphost.exe" and "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/apphost.exe" differ diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/ref/One.dll" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/ref/One.dll" index b89ae129240f857e6644ea333e30933a7adae768..aa9b892e410b60d85aacb15de01a0ef01aa51c0c 100644 Binary files "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/ref/One.dll" and "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/ref/One.dll" differ diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/refint/One.dll" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/refint/One.dll" index b89ae129240f857e6644ea333e30933a7adae768..aa9b892e410b60d85aacb15de01a0ef01aa51c0c 100644 Binary files "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/refint/One.dll" and "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/refint/One.dll" differ diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.build.json" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.build.json" index 3d3de0823263d5cec394133deebb193e4811ba9b..0abfe637df8bcabcf5b55eca29e84a8c7bfd7f13 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.build.json" +++ "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.build.json" @@ -1,6 +1,6 @@ { "Version": 1, - "Hash": "zz0W55em/bw8mgNFg1ufXgBcobPHfTsfPxCHSsqYbgI=", + "Hash": "r6vtvvRQrX7xRUzkGZCRIDd3Nd+yLyqO34+YbfTkKjY=", "Source": "One", "BasePath": "_content/One", "Mode": "Default", @@ -55,12 +55,12 @@ "OriginalItemSpec": "E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\obj\\Debug\\net8.0\\scopedcss\\projectbundle\\One.bundle.scp.css" }, { - "Identity": "E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\css\\site.css", + "Identity": "E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\css\\base.css", "SourceId": "One", "SourceType": "Discovered", "ContentRoot": "E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\", "BasePath": "_content/One", - "RelativePath": "css/site.css", + "RelativePath": "css/base.css", "AssetKind": "All", "AssetMode": "All", "AssetRole": "Primary", @@ -71,7 +71,7 @@ "AssetTraitValue": "", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\css\\site.css" + "OriginalItemSpec": "wwwroot\\css\\base.css" }, { "Identity": "E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\favicon.ico", diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.development.json" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.development.json" index ffb83a2378464d19bf67e4d652c14e7e80523ff5..93d68f9281735b0ea0fe8bd216235b5c4d0d3314 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.development.json" +++ "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.development.json" @@ -1 +1 @@ -{"ContentRoots":["E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\","E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\obj\\Debug\\net8.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"One.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"One.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\","E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\obj\\Debug\\net8.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"base.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/base.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"One.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"One.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.pack.json" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.pack.json" index 5bf87ddb2584fe696ab5bf022a20d33a05d00b15..c62e058d4bb7057eb06e842f00cb5e6777deced1 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.pack.json" +++ "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets.pack.json" @@ -5,8 +5,8 @@ "PackagePath": "staticwebassets\\One.bundle.scp.css" }, { - "Id": "E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\css\\site.css", - "PackagePath": "staticwebassets\\css\\site.css" + "Id": "E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\css\\base.css", + "PackagePath": "staticwebassets\\css\\base.css" }, { "Id": "E:\\大二mvc\\grade23-class4-note-mvc\\魏慧婷\\One\\wwwroot\\favicon.ico", diff --git "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets/msbuild.One.Microsoft.AspNetCore.StaticWebAssets.props" "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets/msbuild.One.Microsoft.AspNetCore.StaticWebAssets.props" index 7298b7cbc0588ad71f4f04cd682f68aa69a14270..f7525d8be4278344479f5cdc429b8cf9659929e8 100644 --- "a/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets/msbuild.One.Microsoft.AspNetCore.StaticWebAssets.props" +++ "b/\351\255\217\346\205\247\345\251\267/One/obj/Debug/net8.0/staticwebassets/msbuild.One.Microsoft.AspNetCore.StaticWebAssets.props" @@ -1,11 +1,11 @@  - + Package One $(MSBuildThisFileDirectory)..\staticwebassets\ _content/One - css/site.css + css/base.css All All Primary @@ -14,7 +14,7 @@ Never PreserveNewest - $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\site.css)) + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\base.css)) Package diff --git "a/\351\255\217\346\205\247\345\251\267/One/wwwroot/css/base.css" "b/\351\255\217\346\205\247\345\251\267/One/wwwroot/css/base.css" new file mode 100644 index 0000000000000000000000000000000000000000..0c95e244a767ad93022e91b34ee2ee1101ce85d4 --- /dev/null +++ "b/\351\255\217\346\205\247\345\251\267/One/wwwroot/css/base.css" @@ -0,0 +1,102 @@ + +*{ + margin: 0px; + padding: 0px; +} +body{ + display: flex; + justify-content: center; + align-items: center; +} +.box{ + height: 700px; + width: 800px; + border: 1px solid ; + padding: 10px; +} +.header,.content{ + width: 100%; + border: 1px solid; +} +.header{ + display: flex; + justify-content: space-between; + align-items: center; + height: 80px; + border: 5px; +} +.search{ + width: 400px; + border: 1px solid; + height: 60px; +} +.add{ + + width: 150px; + border: 1px solid; + display: flex; + justify-content: center; + align-items: center; + height: 60px; +} +.content{ + height: calc(100% - 80px); + margin-top: 5px; + display: flex; + align-items: center; +} +tr,td,th{ + border: 1px solid rgb(243, 195, 195); + font-size: 18px; +} +table{ + width: 100%; + display: flex; + text-align: center; + justify-content: center; + +} +a{ + width: 60px; + text-decoration: none; + background-color: rgb(120, 175, 228); + text-align: center; + color: pink; + line-height: 30px; + border-radius: 8px; +} +a:nth-child(2){ + width: 60px; + text-decoration: none; + background-color: rgb(176, 151, 207); + +} + +th{ + background-color: rgb(198, 188, 241); + color: white; + height: 30px; +} +th:nth-child(1){ + width: 60px; +} +th:nth-child(2){ + width: 70px; +} +th:nth-child(3){ + width: 80px; +} +th:nth-child(4){ + width: 120px; +} +th:nth-child(5){ + width: 150px; +} +td:nth-child(5){ + display: flex; + justify-content: space-around; + height: 35px; + display: flex; + align-items: center; + border: 0px; +} \ No newline at end of file diff --git "a/\351\255\217\346\205\247\345\251\267/One/wwwroot/css/site.css" "b/\351\255\217\346\205\247\345\251\267/One/wwwroot/css/site.css" deleted file mode 100644 index f8d98fcb771c217091024c272f87defa13ebbf34..0000000000000000000000000000000000000000 --- "a/\351\255\217\346\205\247\345\251\267/One/wwwroot/css/site.css" +++ /dev/null @@ -1,22 +0,0 @@ -html { - font-size: 14px; -} - -@media (min-width: 768px) { - html { - font-size: 16px; - } -} - -.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { - box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; -} - -html { - position: relative; - min-height: 100%; -} - -body { - margin-bottom: 60px; -} \ No newline at end of file