Download Visual Studio 2010 express No Master page - c#

I have just downloaded visual studio's 2010 but there is no template to a master page or anything to then use with it.
I will be using C# programming eventually, with asp.net
This is what i get when i select create new project.
i want to use .net framework 3.5. please help, what else needs to be downloaded.

For web development, you should download Visual Studio Express for Web.
The C# express version does not include web templates.

You need Visual Studio Express for Web not for Dekstop
And you should use the new 2012 version.
Here is the link

Visual C# 2010 Express only support following default projects templates:
Windows Forms Application
WPF Application
Console Application
Class Library
WPF Browser Application
Empty Project
To use ASP.NET Web Applications you need this:
http://www.microsoft.com/visualstudio/eng/products/visual-studio-express-for-web

Related

Cannot create a Windows Forms application in Visual Basic.net in Visual Studio

I'm not able to créate a new Windows form app with Visual Basic in Visual Studio, as shown in this image.
According to this reference I should be able to.
What can be happening that makes the Windows forms template not to appear?
On top of that, I'd likely need it to be in .NET Core, not .NET Framework as in the reference, but I see no reason not to include the same posible template for either C# and Visual Basic.net.
Take Visual Studio 2017 as an example, as shown below. Open Visual Studio Installer-> More-> Modify-> Check.Net desktop development-> Modify.
Then restart Visual Studio, check whether it returns to normal at this time.
Now you can create New Solution and Project like the follow displayed.
Please note that for now, unless you use ASP.NET Core, you cannot use Core in VB.NET form applications.

Class Library and Console Application project templates not available on Visual Studio 2015 Express

We're growing the team but won't buy more Visual Studio Ultimate licences, so some people will have to work in VS Express edition.
We're testing it, but our projects aren't working on Express. We have projects of type Class Library - compiles into dll - and Console Application. In VS Express, when I try to create new solution/project, all I have is asp.net web application. I believe the installation I did doesn't have support for these templates, and therefore is unable to load those projects.
Is there a way to fix it? Maybe use another Express setup or install those templates separately?
Visual Studio Community will be work for you. You can download it from here: https://www.visualstudio.com/vs/community/
I installed Visual Studio 2015 Express for Desktop and those project templates became available.

MVC5 Web Application

I wanted to create MVC5 web application but I am unable to find the option. Should I have to install something? I am using visual studio 2013 professional version. I followed this How to add MVC5 to Visual Studio 2013? But I could not find the option mentioned in that stackoverflow link.
File->New project-> web-> Asp.net web application not found instead I have only the list of templates shown in the image.
Look in here, instead of the Visual Studio 2012 element
You should then see something like this

How do I use a Local IIS with .NET Core, C# 6 and Visual studio 2015?

Previously when working with .net 4.5 and Visual Studio 2013, I could just right click the project, select Web and choose Local IIS like this:
Here I could select a URL for my application and stuff like that.
However, in Visual studio 2015 it looks like this:
How do I use a local IIS? I dont want to start IIS express everytime, I just want to build and then refresh the page like I always have done... :)
That's because in VS 2013 you're using ASP.NET 4.5 -or similar- Web application.
In VS2015 you can also use that one but as you can see in your screenshots that project properties screen is for ASP.Net 5 preview project
So, for ASP.Net 5 preview there's no current support for Local IIS.
This screenshot is from VS 2015 with both types of projects:
You can take a look to the ASP.Net 5 roadmap here
ASP.NET 5 Schedule and Roadmap
As a Workaround you can follow the 'manual steps' listed in this other stackoverflow post
ASP.NET 5 project hosting on IIS

WCF RIA's (Silverlight Business Application Template) for Visual Studio 2013 missing

I have a fresh install of Visual Studio 2013 (Ultimate) and I have downloaded and installed WCF RIA Services Toolkit from Microsoft
However when I create a new project under Visual C# -> Silverlight I don't find the Silverlight Business Application template in it.
On Google and on Stackoverflow I only see that the problem was earlier on the Visual Studio 2010 which required required SP1 and you were required to select the .Net Framework 4+.
What is the problem? Is there anything else missing?
Thanks
That template was removed in VS2013
http://msdn.microsoft.com/en-us/library/jj161050.aspx
You can instead just use the basic Silverlight application template and add DomainServices manually as appropriate (the DomainServices wizard has also been removed).

Categories

Resources