Showing results for Routing - .NET Blog

Apr 3, 2023
4
17

ASP.NET Core Route Tooling Enhancements in .NET 8

James Newton-King
James Newton-King

Route tooling is a group of new features in .NET 8 that makes ASP.NET Core routing easier to use. Check out what route tooling adds to building ASP.NET Core apps.

.NETASP.NETASP.NET Core
Jul 29, 2014
0
0

Profile and Time your ASP.NET MVC app all the way to Azure

Rick_Anderson
Rick_Anderson

Successful web app dev teams generally consider performance a requirement from the beginning,  not an afterthought. Performance should be considered in all phases of a project, from design and into production, including updates to the app. That's not to say you should try to optimize code before you've measured it, you really don't know what...

ASP.NET
Jun 20, 2014
2
0

ASP.NET vNext Routing Overview

Mugdha Kulkarni (MSFT)
Mugdha Kulkarni (MSFT)

Introduction The ASP.NET Routing system is primarily responsible for two operations: A typical route definition is a string that contains a URL template to match, such as: "blog/{year}-{month}-{day}/{slug}" With the URL template, the route definition can also contain default values and constraints for parts of the URL. Thi...

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