Absract controller
Why is the abstraction in your ASP.NET MVC application useful? Code Reusability: You can avoid duplicating code across multiple controllers. This promotes code reusability and helps keep y...
Why is the abstraction in your ASP.NET MVC application useful? Code Reusability: You can avoid duplicating code across multiple controllers. This promotes code reusability and helps keep y...
cookies : key/value pare that’s created on the server and passed to the user’s browser in an HTTP response. Then, the browser passes the cookie back to the server with each subsequent HTTP reque...
PouchDB is an open-source JavaScript database inspired by Apache CouchDB that is designed to run well within the browser. 1. setup and make database npm install --save pouchdb if browser only? n...
“asp-validation-summary” is used to display a summary of validation errors that have occurred during form submission. <form asp-action="Create"> <div asp-validation-summary="ModelOnly...
This is a hands-on to practice an APS.net MVC app. It has functions to add, show, edit items for the Heart Rate data. Create a project as MVC project with .Net 7.0 on Visual Studio. install e...
This is a post for tips on developing Asp.net on Mac. First, I’ll briefly introduce how to connect to database. First, Run MS SQL server on Docker. (a setting of MS SQL on Docker will be posted so...
I am going to make a web site show a Blood Pressure measurement. The first step is to connect Database server and show a default seed data. create .net core MVC project without https checking ...
Jeyll server To run local server bundle exec jekyll server and you can see the jekyll page at http://127.0.0.1:4000/ in any browser.