I can't find ASP.NET Web Application (.NET Framework) with c#

WEI HAN TAN 36 Reputation points
2021-10-01T00:33:18.083+00:00

Hello
I want to use ASP.NET Web Application (.NET Framework), and I have downloaded Visual Studio Community 2019 v16.11.3, and i have clicked the ASP.NET and web devleopment before i download it

but I can't find the one i needed, I don't want the 'core' one,

does anyone know how to solve it?

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

11 answers

Sort by: Newest
  1. Stefan Perisic 0 Reputation points
    2024-01-30T19:57:50.0033333+00:00

    If someone can help me, I opened an ASP.NET Web Application (.NET Framework) and removed HTTPS from it, I go to the right click on the visaul studio name as I called it and go to the add form, write its name and from the options I have only design and split, I miss source. It also won't let me add anything to the form, no button, text box or anything, if anyone knows please help me. I am sending a picture. Screenshot 2024-01-30 205657


  2. davidjohnson 5 Reputation points
    2023-05-16T13:36:47.5333333+00:00

    Starting from Visual Studio 2019, Microsoft has made changes to the project templates, and the "ASP.NET Web Application (.NET Framework)" template is no longer available by default. However, you can still create a similar project using the following steps:

    1. Open Visual Studio.
    2. Click on "Create a new project" or go to "File" -> "New" -> "Project".
    3. In the "Create a new project" dialog, search for "ASP.NET Web Application" in the search box.
    4. Select the "ASP.NET Web Application" template.
    5. In the next dialog, choose the version of .NET you want to target (e.g., .NET Framework 4.x).
    6. Select the desired project template, such as "Empty", "Web Forms", or "MVC".
    7. Choose the project settings and click "Create" to create the project.

    Note that while the specific "ASP.NET Web Application (.NET Framework)" template may not be available, you can still create web applications targeting the .NET Framework using the provided templates like "Empty", "Web Forms", or "MVC". These templates provide a starting point for building your web application with C# in the .NET Framework.
    Regards :

    CEO

    Mobilesinbd

    0 comments No comments

  3. Jorge Serrano 16 Reputation points
    2022-09-21T13:51:21.193+00:00

    For whatever is worth. I could not find ASP.NET Web Application (.NET Framework), when I tried to update to add .NET Framework project and item templates using the Individual components tab of Visual Studio installer I could not find it anywhere.

    I then uninstalled ASP.NET and web development and reinstalled it. During the reinstall process I could see .NET Framework project and item templates so I selected and it all seems to work just fine.

    I am using Visual Studio 2022

    I hope this helps you!

    3 people found this answer helpful.

  4. Hritthik Bose 301 Reputation points
    2022-03-26T09:58:30.017+00:00

    Hey there! (I am using Visual Studio 2022 Community Edition)
    I was facing the same problem.
    the solution to this was modifying the packages in Visual Studio - and adding - ASP.NET Web Application (.NET Framework) package.

    Please follow the steps below:

    Go to File
    New project
    Scroll down, at last, you'll see - Not finding what are you looking for
    go to Install More tools and Features

    it will open Visual Studio Installer

    go to Modify
    Go to INdividual packages Tab
    Search For: " .NET Framework project and item templates " and mark the checkbox.
    Install the packages

    Installing .NET Framework project and item templates ask for 1.6GB of space requirement,
    which might be the reason for not being included by default in the first place during the Visual Studio 2022 installation.

    It should solve your problem
    Regards,
    Hritthik

    60 people found this answer helpful.

  5. Rijwan Ansari 746 Reputation points MVP
    2022-02-06T16:08:16.427+00:00

    Hi @WEI HAN TAN

    You can add ASP.NET and web Development workload and .NET framework components as shown:

    image-18.png

    However, we can install individual components, as illustrated below. In my case, I have selected 4.x .Net frameworks and .Net core 3.1, .NET 5, and .NET 6 likewise we can select previous versions based on our need.

    image-19.png

    Check this link for more detail
    https://rijsat.com/2021/11/18/step-by-step-installation-visual-studio-2022/

    0 comments No comments