0
votes
0answers
119 views

Asp.net web form URL Routing RouteData.Values return weird values

I have an web application, developed on web form architecture. It has a very easy structure which has only one aspx file (default.aspx) and all other contents are being retrieved inside user controls. ...
5
votes
1answer
44 views

Creating routes from DB records

Current ASAX code (simplified): void Application_Start(object sender, EventArgs e) { // Enable routing RegisterRoutes(RouteTable.Routes); } void RegisterRoutes(RouteCollection ...
0
votes
0answers
152 views

ASP.NET Web Forms Routing - with default route values

I am using Routing in ASP.NET Web Forms. In Global.asax, I have: void RegisterRoutes(RouteCollection routes) { Dictionary<string, object> dRouteValue = new ...
5
votes
3answers
307 views

Why does PreApplicationStartMethodAttribute() not work in SharePoint 2013?

In .NET 4(.5) there is this amazing Attribute: PreApplicationStartMethodAttribute, I want to use it in SharePoint 2013 so I don't have to edit the app_start method in the global.asax file directly. ...
4
votes
2answers
173 views

How to fix my MVC3 routing

I have some problem with routing in my ASP.NET MVC3 application, exactly it doesn't works as I want. Routing definition in Global.asax routes.MapRoute( "News", // Route name ...
0
votes
2answers
142 views

Optional parameters in routing ending with paging parameter

I've been creating a blog, which contains of 3 diffrent views. - Overview - Post Detail - Filtered overview The filtered overview is based on blogposts which contain a certain tag, to make the url ...
0
votes
1answer
654 views

MVC3 Resource not found - Default area page

This is an odd one. A web app which I've been working on for a number of months has worked absolutely fine up until two days ago. The basic structure in question comprises of a number of Areas (the ...
0
votes
1answer
413 views

Routing on ASP.NET website (not WebForm application and not MVC)

Can I use web.config or Global.asax to do routing in an asp.net website (folder structure)? Basically I would like http://www.something.com/agents/10/TheAgentsName to go to ...
0
votes
1answer
484 views

asp.net c# app routing

I've been trying to get some routing up and running. I basically want this url: www.example.com/SomebodysName or www.example.com/agents/somebodysname ..to go to... ...
0
votes
2answers
615 views

mvc parameter dictionary contains null entry … routing error/problem

So I have this controller called Cars, and it has: namespace MySite.Controllers { public class CarsController : ApplicationController { public ActionResult Index() { ...
0
votes
3answers
603 views

Registering routes on session start not application start

I am trying to register the route collection in .net based on each session. The code I have works fine, you goto website/username and it loads the correct sub pages, but you have to restart the ...
6
votes
2answers
6k views

ASP.NET MVC routing conflict - null value for input variable

I'm at a loss as to why my routes are conflicting. I have these in my Global.asax file: routes.MapRoute( "CustomerView", "{controller}/{action}/{username}", new { controller = ...
1
vote
1answer
455 views

Can I map new routes to the RouteCollection outside Global.asax?

I'd like to occasionally map new routes to the RouteCollection during program execution long after the Global.asax RegisterRoutes() method had first executed. How can I do this?
1
vote
3answers
2k views

Looking for sample global.asax.cs files for routing information

No matter what you read about ASP.NET routing or REST I think the best way to learn more about them is to read other people's routing files. In a video with Jeff once you could catch a glimpse of the ...