Showing results for MVC - .NET Blog

Aug 27, 2014
0
0

Announcing the Release Candidates for Web API OData 5.3

Andrew Zhou from Microsoft
Andrew Zhou from Microsoft

The release candidate NuGet packages for ASP.NET Web API OData 5.3 are now live on the NuGet gallery!Download this releaseYou can install or update the release candidate NuGet packages for ASP.NET Web API OData 5.3 using the NuGet Package Manager Console, like this: What’s in this release?This release primarily includes great new features ...

ASP.NET
Jun 9, 2014
24
0

Updating the MVC Facebook API

N. Taylor Mullen
N. Taylor Mullen

Over the past several months Facebook made changes to their application development APIs that were incompatible with the MVC Facebook support. We have been working on updates while the Facebook API kept evolving, and on 4/30/2014 Facebook announced a two-year stability guarantee. This was a fantastic announcement because this ensured a similar sta...

ASP.NET
May 27, 2014
0
0

Release Candidates for ASP.NET MVC 5.2, Web API 2.2 and Web Pages 3.2

Kanchan Mehrotra (Microsoft)
Kanchan Mehrotra (Microsoft)

The release candidate NuGet packages for ASP.NET MVC 5.2, ASP.NET Web API 2.2 and ASP.NET Web Pages 3.2 are now live on the NuGet gallery!Download this releaseYou can install or update the release candidate NuGet packages for ASP.NET MVC 5.2, ASP.NET Web API 2.2 and ASP.NET Web Pages 3.2 using the NuGet Package Manager Console, like this: Prereq...

ASP.NET
Mar 4, 2014
0
0

ASP.NET MVC 5 Lifecycle Document Published

cephalin
cephalin

Fresh out of the oven is a PDF document that charts the lifecycle of every ASP.NET MVC 5 application. Many of you have requested this document over the years and we're glad to finally put it in your hands now. You will find the PDF document very similar to the ASP.NET application lifecycle topic in its approach. It's a graphical representation of t...

ASP.NET
Oct 17, 2013
0
0

Attribute Routing in ASP.NET MVC 5

Ken Egozi
Ken Egozi

Routing is how ASP.NET MVC matches a URI to an action. MVC 5 supports a new type of routing, called attribute routing. As the name implies, attribute routing uses attributes to define routes. Attribute routing gives you more control over the URIs in your web application. The earlier style of routing, called convention-based routing, is still fully ...

ASP.NET
Sep 3, 2013
0
0

Debug ScriptBundle results in 404 if virtualPath parameter contains a dot

Xinyang Qiu
Xinyang Qiu

I spent some time debuging a ScriptBundle problem last Friday and want to share my experience. The original code in a MVC project App_Start/BundleConfig.cs file: Code Snippet And in a cshtml file, the bundle is included as: Code Snippet In local IIS Express debugging mode, I found no problem. So I deployed to Azur...

ASP.NET
May 14, 2010
0
0

The Aspnet Compiler Build Task in Visual Studio 2010 ASP.Net MVC 2 Projects

Web Development Tools Microsoft
Web Development Tools Microsoft

If you crack open the project file in an ASP.Net MVC 2 application (in notepad or unload your project and then click “Edit *.proj”), you will notice an interesting line. <MvcBuildViews>false</MvcBuildViews> This is an option to enable a post build task that will run the Asp_net compiler. This command will compile your aspx ...

ASP.NET
Apr 13, 2010
0
0

Visual Studio 2010 MVC 2 Upgrade Wizard

Web Development Tools Microsoft
Web Development Tools Microsoft

Prior to the RTM release of Visual Studio 2010, the only way to upgrade an ASP.Net MVC 1 application to ASP.Net MVC 2 was to use Eilon Lipton’s tool. With the release of Visual Studio 2010 you will now be able to open your MVC 1 projects in Visual Studio 2010 and upgrade them to ASP.Net MVC 2 projects. Also, you can upgrade the target framework of ...

ASP.NET
Feb 19, 2010
0
0

How to package .NET assemblies

Web Development Tools Microsoft
Web Development Tools Microsoft

If we want to package and deploy GACed dll, we need to use gacAssembly web deploy provider and extend our project similarly to the one stated in the how to package registry blog.  The extended projectName.wpp.targets file looks like following:   Then you can use the following command line to package the project with corresponding Mv...

ASP.NET
Oct 23, 2009
0
0

ASP.Net MVC in Visual Studio 2010 Beta 2

Web Development Tools Microsoft
Web Development Tools Microsoft

Visual Studio 2010 Beta 2 contains ASP.Net MVC 2 in the box so there is no need to install an out of band update to Visual Studio 2010 to develop ASP.Net MVC applications. Phil Haack posted about the in-box experience for Beta 2 andd also provides some info on how to upgrade your ASP.Net MVC 1 apps to ASP.Net MVC 2. From a tooling perspective, all ...

ASP.NET