User Tools

Site Tools


Sidebar

programming:start

This is an old revision of the document!


Programming articles:

Programming a wiki

* [https://www.youtube.com/watch?v=et8m8BPx8jI Building a wiki in .NET Core, stream of what developer is doing while programming - April 14, 2018] - Very chatty, not as focused as a written tutorial. 2019/5/26 Code repository - https://github.com/csharpfritz/CoreWiki * Last update 11 monthsa ago, some updates 4 months ago. * Got an error when downloaded and tried to run. It got a compile error. A wwwroot/lib directory is missing. * Does not support a full wikitext. Has feature supported to make links out of camel cased names . https://github.com/csharpfritz/CoreWiki/issues/38 * Other videos by csharpfritz This is in series fro Corewiki, but is just him rambling on wtih Kathleen Dollard - https://www.youtube.com/watch?v=7mS08szgpJM&t=0s === HTML On Razor Pages === * Google query: html checkbox html button razor pages button * [https://www.youtube.com/watch?v=g__b2J7WYzQ Video of multiple buttons on an ASP.NET page] === Doing a login function on an ASP.NET core project === ==== Google queries for .NET Core login tutorials ==== * razor pages access password * ==== Articles about Razor Page Login ==== * [https://www.c-sharpcorner.com/article/asp-net-core-razor-pages-simple-login-using-entity-framework-database-first-app/ ASP.NET Core Razor Pages - Simple Login Using Entity Framework Database First Approach] Start with creating its own database for the project (using a stored procedure)

* [http://future-shock.net/blog/post/creating-a-simple-login-in-asp.net-core-2-using-authentication-and-authorization-not-identity Project to make a fixed username and password for login in ASP.NET Core 2 using Authentication and Authorization (NOT Identity)] Really minimal login/logout * [https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity?view=aspnetcore-2.2&tabs=visual-studio Introduction to Identity on ASP.NET Core] Allows for external login providers such as Facebook, Google, Microsoft Account and Twitter Can be configured using SQL Server database Using identity to register, login in, and log out a user.

* [https://docs.microsoft.com/en-us/aspnet/core/security/authorization/secure-data?view=aspnetcore-2.2 Create an ASP.NET Core app with user data protected by authorization] Sample app is a contact list created by users This tutorial shows how to create an ASP.NET Core web app with user data protected by authorization. It displays a list of contacts that authenticated (registered) users have created. There are three security groups: * Registered users can view all the approved data and can edit/delete their own data. * Managers can approve or reject contact data. Only approved contacts are visible to users. *** Administrators can approve/reject and edit/delete any data.

programming/start.1559266309.txt.gz · Last modified: 2019/05/31 05:31 (external edit)