Showing posts with label .NET. Show all posts
Showing posts with label .NET. Show all posts

Wednesday, March 02, 2022

.NET Programming Quiz 2022

Click here to start Quiz 18-Mar-22
Click here to start Quiz 17-Mar-22
Click here to start Quiz 15-Mar-22
Click here to start Quiz 14-Mar-22
Click here to start Quiz 12-Mar-22
Click here to start Quiz 11-Mar-22
Click here to start Quiz 10-Mar-22
Click here to start Quiz 08-Mar-22
Click here to start Quiz 04-Mar-22
Click here to start Quiz 03-Mar-22
Click here to start Quiz 28-Feb-22
Click here to start Quiz 26-Feb-22
Click here to start Quiz 25-Feb-22
Click here to start Quiz 24-Feb-22
Click here to start Quiz 22-Feb-22
Click here to start Quiz 21-Feb-22
Click here to start Quiz 19-Feb-22

Tuesday, February 15, 2022

Introduction to ASP.NET Core (Questions and Answers)


1. Describe the ASP.NET Core.

ASP.NET Core is an open-source, cross-platform, cloud based and high performance platform that allows you to build modern applications. With ASP.NET Core we can build
  • web applications,
  • IoT (Internet of things) apps,
  • services
  • mobile apps.
  • we can do our development on Linux, Windows and MacOS.
  • deploy our code to cloud or on-premises.




Tuesday, February 01, 2022

ASP.NET Core Identity

 ASP.NET Core Identity is a fully featured membership system for creating and maintaining user logins. Using Identity API, you can sign in & sign out users, reset their passwords , lockout users & Implement Multi Factor Authentication. It can also integrate with the external login providers like Microsoft Account, Facebook, Google, etc.

When we create a new application, we can install the ASP.NET Core identity by choosing the Individual Accounts under the Authentication Type Option. Most of the Identity related services and UI forms like Register, Login & Logout are automatically created for us.