Articles
Count = 5
Express EJS Views, Layouts, and Partials
Created: 2/14/2026
Views in Express EJS are a lot like views in MVC and pages in Razor Pages. This article describes the express-ejs-layouts implementation.
EJS Posting Form Data
Created: 2/16/2026
This article describes posting form data from the client to the server. The data is sent to the server with the default Content-Type of application/x-www-form-urlencoded.
EJS Client-Side Validation
Created: 2/16/2026
This article describes validating form data before it is posted to the server. This provides immediate user feedback and reduces server load.
Express Server-Side Validation
Created: 2/16/2026
This article describes validating form data on the server. The form data should have already been validated on the client-side.
EJS Password Input Validation
Created: 2/16/2026
This article describes password requirements for user registration. Password requirements should be listed and indicate if the requirement has been satisfied.