Creating new ASP.NET MVC application

Santosh Umarani 81 Reputation points
2021-06-29T11:28:30.543+00:00

Hi,

I am new to ASP.NET MVC. I want to create a new application with the following criteria:

  • Create a new page and provide options to select a date range (basically provide a from and to date)
  • Option to select project (there are 1000's of projects which will be read from DB. I need to provide a mechanism to select few projects which user is interested in)
  • Option to select a test type (there are 5 test types. So dropdown can be provided)
  • Status of the selected projects should be displayed (status will be read from DB)

Can you please help to achieve above functionality ? Kindly waiting for your response.

Thanks,
Santosh

Developer technologies ASP.NET Other
{count} votes

2 answers

Sort by: Most helpful
  1. Jair Onofre 1 Reputation point
    2021-10-29T17:47:10.883+00:00

    First thing you have to do is create a project in Visual Studio(I recommend Visual Studio 2019), and select the architectural what you want, exemple asp.net MVC:

    ![145082-image.png]1

    For data-base, I recommend you to use Entity Framework , it easy to used, search more about this. You will choose better what you want in your data-base with him.

    0 comments No comments

  2. Rijwan Ansari 766 Reputation points MVP
    2022-02-03T10:37:03.857+00:00

    Hi,

    You can follow below article to create a solution and do CRUD. This will give idea to show the records from database and also do searching and filtering.
    https://learn.microsoft.com/en-us/aspnet/mvc/overview/getting-started/getting-started-with-ef-using-mvc/implementing-basic-crud-functionality-with-the-entity-framework-in-asp-net-mvc-application
    Then you can modify as per your requirement.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.