https://github.com/try0/aspmvcexample
.NET Framework MVC Example Application
https://github.com/try0/aspmvcexample
ajax asp-net-mvc dotnet example lazy-loading model-binding net48
Last synced: 6 months ago
JSON representation
.NET Framework MVC Example Application
- Host: GitHub
- URL: https://github.com/try0/aspmvcexample
- Owner: try0
- Created: 2022-01-09T14:49:28.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-12T10:07:35.000Z (about 4 years ago)
- Last Synced: 2025-04-04T04:44:52.375Z (10 months ago)
- Topics: ajax, asp-net-mvc, dotnet, example, lazy-loading, model-binding, net48
- Language: C#
- Homepage:
- Size: 1.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AspMvcExample
.NET Framework MVC Example Application
ASP.NET MVC学習用
### ログインフォーム
* [Controller](WebApp.MVC/Controllers/LoginFormExampleController.cs)
* [View](WebApp.MVC/Views/LoginFormExample/Index.cshtml)

### リスト
* [Controller](WebApp.MVC/Controllers/ListExampleController.cs)
* [View](WebApp.MVC/Views/ListExample/Index.cshtml)

### パーシャルビュー
* [Controller Index](WebApp.MVC/Controllers/PartialViewExampleController.cs)
* [View](WebApp.MVC/Views/PartialViewExample/Index.cshtml)
* [TimeDropdownListView](WebApp.MVC/Views/Shared/_TimeDropdownListView.cshtml)
* [TimeDropdownView](WebApp.MVC/Views/Shared/_TimeDropdownView.cshtml)
* [HtmlHelper](WebApp.MVC.Core/Extensions/HtmlHelperExtensions.cs)

### ネストされたパーシャルビュー
* [Controller Nested](WebApp.MVC/Controllers/PartialViewExampleController.cs)
* [View](WebApp.MVC/Views/PartialViewExample/Nested.cshtml)
* [NestedView](WebApp.MVC/Views/Shared/_NestedView.cshtml)
* [HtmlHelper](WebApp.MVC.Core/Extensions/HtmlHelperExtensions.cs)

### パーシャルビュー Ajax Lazy Load
* [Controller](WebApp.MVC/Controllers/AjaxExampleController.cs)
* [View](WebApp.MVC/Views/AjaxExample/Index.cshtml)
