VS2012 and VS2013 Missing STS Web Application Template - asp.net

I am trying to create STS MVC web application in VS2012 and VS2013, but STS web template is not available in template gallery. Is there a way that I can download STS web app template in VS2012 and Vs2013 ?
One more query, We have Identity and Access tool in VS2012 but there is nothing like this in VS2013.
How I can install Identity and Access tool in VS2013 ?
Please help me.

If you read the Q and A for the Identity and Access Tool extension for VS 2012, you will see a post from a member of the team who indicates that it will not be ported to VS 2013. They have added support for claims based authentication directly into the ASP.NET project creation template.
In the post, they admit that they are not 100% equivalent, so they use VS2012 and VS2013 side by side until they achieve parity.
Identity and Access Tool

Related

asp.net web application template is missing visual studio 2017

I have visual studio 2017 enterprise edition but asp.net web application template is missing. I have asp.net core 2 installed on my machine.
here are the installed components
It was there but dont know how they got removed.
Please suggest me how can i see web application template and asp.net mvc templates?
Thanks
After you select a project type of Web Project then click OK you will be taken to a dialogue which will allow you to select the web project type:
For .Net Framework:
For .Net Core:
I encountered the same issue in Visual Studio 2019 and upgrading / repair did not work. However, there is dotnet new that is very easy to use and requires less time than trying to fix VS templates. Example:
default project creation (preview)
dotnet new mvc --dry-run
help related to various options such as authentication (None, Individual etc.)
dotnet new mvc --help

Missing ASP.NET 5 Templates

I am following this setup tutorial
https://docs.asp.net/en/latest/tutorials/your-first-aspnet-application.html#create-a-new-asp-net-5-project
And have come across a problem. In the tutorial the instructions are as follows:
Start Visual Studio 2015. From the File menu, select New > Project.
Select the ASP.NET Web Application project template. It appears under
Installed > Templates > Visual C# > Web. Name the project ContosoBooks
and click OK.
This is fine, but in the next step :
In the New ASP.NET Project dialog, select Web Application under
ASP.NET 5 Preview Templates. Also, make sure the Host in the cloud
checkbox is not selected and click OK.
I am seeing no ASP.NET 5 Preview templates!
The only thing I am noticing is that my Authentication states No Authentication but I am signed in so I am not sure what this means or whether or not this is a factor.
The version I have installed of Visual Studio is "Community 2015".
I have already gone through the perquisites as outlined in This Article.
I am hoping that someone with a more thorough knowledge on the topic can help me out as I have not been able to find any threads etc. of the same issue or what could be causing the Templates to be missing.
Asp.net 5 templates no longer exist - they are renamed to Asp.net Core: ASP.NET 5 is dead - Introducing ASP.NET Core 1.0 and .NET Core 1.0
So, when creating your project, instead of picking "ASP.NET Web Application" as it is in the video - you would select "ASP.NET Core Web Application" and then on the next page those 3 templates (Empty, Web API, Web Application) are the same as the video's asp.net 5 preview templates
VS 2015 Preview is going under ASP.net Core web application. If you cant see that one under templates you may go to this site and download .NET Core 1.0 for Visual Studio then install.
I have concluded, by following another stackoverflow question on How to check the ASP.NET version loaded on a system as I noticed that the templates were categorized in the ASP.NET versions (4.6.1 & 5) in the tutorials but mine were not.
So I then checked and my files in C:\Windows\Microsoft.NET\Framework are as follows
Revealing no v5.0 directory. I rectified this and now all of the templates are available
AMENDMENT:
To fix it:
I went to http://www.asp.net/downloads and downloaded ASP.NET MVC 5
I ensured I had Developer Tools checked in the download process.
This issue was now resolved - As I then had the MVC 5 template files. Because I downloaded them, so I had them... and no longer didn't have them.
ALTERNATE FIX:
Furthermore From my research, some people had not included Developer Tools. To resolve: go to old mate 'Add or remove programs' and find your Microsoft Visual Studio 20xx install, 'change' and install Microsoft Web Developer Tools
I have had the same problem but it is actually even better because "The new dialog enables you to change the default authentication options for many of the templates. For example, when you create an ASP.NET Web Forms project you can select any of the following options:
No Authentication
Individual User Accounts (ASP.NET membership or social provider log in)
Organizational Accounts (Active Directory in an internet application)"
check out this >> http://www.asp.net/mvc/mvc5
I recently had this problem and finally fixed it by uninstalling (control panel -> uninstall a program) Microsoft.NET Core and Microsoft Visual C++ redistrutable 2015 (x64 & x86) and then re-installing the asp.net core rc2 (https://www.microsoft.com/net/core#windows or possibly check Tools->Extensions and Updates->Updates inside of Visual Studio).
I uninstalled the Visual C++ redistrutables because I kept getting an error when trying to re-install asp.net core rc2. It kept telling me that it already existed even after I had just uninstalled it and the update was showing in the "Extensions and Updates" section of Visual Studio after trying (but failing) to install the asp.net core rc2 update.

Enterprice portal application in .Net other than Sharpoint

My client need an enterprise web portal app where a set of applications will be shown in the portlets and he can work on those portlets or navigate to the particular web application by clicking the relevant portlet. I would like to know about the available software that I can use to develop the Portal in .Net since the client is a .Net company.
I know SharePoint and Microsoft Dynamics is there by I need to know other alternatives available in .net language stack .
You can install AX addons to Visual Studio that will allow you to access AOT objects in a .net application. You can find an example in my response here:
How to use microsoft's Dynamics AX classes?

cannot find solution for my webservice

I am new to .net and I have downloaded VS 2008 trail version today. I was trying to develop a web service.
I added a new project and selected asp.net web service application.Then i wanted to add a new project to the same webservice but i was unable to find solution for my webservice in the solution explorer, to right click on it and add a project. It only shows webservice, then properties and references below it. Do I need to make any changes in the settings?
First of all, why not use Visual Studio 2010? It also has a trial version.
Secondly, you shouldn't be using the "ASP.NET Web Service Application" for new development. That's now a legacy technology. Use the "WCF Service Application" instead.
Finally, the default is to not show the solution if there is only one project. In Tools->Options->"Projects and Solutions", check "Always show solution".

Is it possible to develop a Web Service using Visual Web Developer 2010?

Is it possible to develop an ASP.NET Web Service using the Visual Web Developer 2010? Or I must use Visual Studio itself for creating the Web Service?
Thanks,
LS Developer
Yes. But for future understanding, please consider these notes:
Creating Web Service actually doesn't need any IDE. You can create a web service (or an entire web site) using Notepad. Therefore, Visual Studio is just a helpful tool for you.
Creating a web service based on .NET Framework actually needs you to compile your code. Therefore, you can again create the web service with notepad, and compile it using C# or VB.NET compiler, deploy it and use it.
Visual Web Developer 2010 (Express) is just an IDE. Web Service on the other hand is an Item Template (which writes the basic infrastructure for you). But even if you don't use that Item Template, you can create a class, inherit from WebService and create your web service.
Good luck.
Yes: http://msdn.microsoft.com/en-us/library/8wbhsy70.aspx

Resources