Any sample .net websites with authentication & authorization?

Joh 21 Reputation points
2023-03-24T12:31:57.87+00:00

I would like to create a web portal with the following features.

  1. Authentication & authorization
  2. Connect to sql database
  3. Pages are base on their roles where i can have the versatility to set
  4. A decent master page
  5. Create, Read, Update and delete (CRUD) of data and to be store in SQL server with ease.

It would be the best where I can have a sample solutions project where i can do modification. I am using VS 2022 at the moment and i would prefer a c# language.

Thanks in advance for any feedback.

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,284 questions
{count} votes

Accepted answer
  1. AgaveJoe 26,141 Reputation points
    2023-03-24T14:43:22.6733333+00:00
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. SurferOnWww 1,916 Reputation points
    2023-03-25T00:56:02.4066667+00:00

    I suggest that you use the ASP.NET Web Application (.NET Framewok) template of Visual Studio 2022 to create a Web Forms project.

    It includes items 1 to 5 of your requirements.

    As for item 5 you will be able to use the sever controls such as the GridView and SqlDataSource.

    1 person found this answer helpful.