Tagged Questions

21
votes
2answers
1k views

ASP.NET MVC Routing Via Method Attributes

In the StackOverflow Podcast #54, Jeff mentions they register their URL routes in the StackOverflow codebase via an attribute above the method that handles the route. Sounds like a good concept (with …
15
votes
5answers
528 views

How do get clean URLs like Stackoverflow?

On some .NET driven sites URLs don't end with asp.net page names, like default.aspx, instead they use a pattern http://sitename.com or http://sitename.com/subdirectory/subdirectory. The site is mapped …
9
votes
3answers
1k views

ASP.NET URL Rewriting

How do I rewrite URL's in ASP.NET? I would like users to be able to goto http://www.website.com/users/smith instead of http://www.website.com/?user=smith
8
votes
3answers
2k views

ASP.NET MVC URL Routing with Multiple Route Values

I am having trouble with Html.ActionLink when I have a route that takes more than one parameter. For example, given the following routes defined in my Global.asax file: routes.MapRoute( …
7
votes
3answers
548 views

ASP.NET Routing with Web Forms

I've read ASP.NET Routing… Goodbye URL rewriting? and Using Routing With WebForms which are great articles, but limited to simple, illustrative, "hello world"-complexity examples. Is anyone out there …
5
votes
4answers
123 views

Faking method attributes in PHP?

Is it possible to use the equivalent for .NET method attributes in PHP, or in some way simulate these? Context We have an in-house URL routing class that we like a lot. The way it works today is …
5
votes
1answer
106 views

ASP.NET MVC URL Routes

In ASP.NET MVC, is it possible to define routes that can determine which controller to use based on the data type of part of the URL? For example: routes.MapRoute("Integer", "{myInteger}", new { …
5
votes
1answer
292 views

TinyURL like routing with ASP.NET MVC?

I'm attempting to write a TinyURL like clone in ASP.NET MVC as a first project to get used to the framework. The URL routing is still a little confusing for me, especially when I deviate from the …
5
votes
5answers
321 views

ASP.NET webpages without names ? ala stackoverflow?

Mentioned stackoverflow only as an example, but if you look above the URL for ask is http://stackoverflow.com/questions/ask which means /ask is a subdirectory, but they also do this for the …
5
votes
4answers
399 views

How to keep a website with url routing directory independent

I'm developing a PHP website that uses url routing. I'd like the site to be directory independent, so that it could be moved from http://site.example.com/ to http://example.com/site/ without having to …
4
votes
1answer
45 views

Content-Type and Representations

What is the common convention for supporting multiple representation (e.g. html, json, xml) for resources (e.g. blog, user) in django? First, I don't know how I should format my urls. For example, …
4
votes
1answer
103 views

How to add a prefix to all actions with ASP.Net MVC URL Routing?

I'm trying to write a MapRoute call that will make any route that is prefixed with "json/" prepend "json" to the action's name. For instance, a route something like this: "json/{controller}/{action}" …
3
votes
4answers
90 views

ASP.NET Friendly URLs

In my research, I found 2 ways to do them. Both required modifications to the Application_BeginRequest procedure in the Global.Asax, where you would run your code to do the actual URL mapping (mine …
3
votes
3answers
54 views

Directing non extension files to .php

I have a file with .php extention www.example.com/thefile.php?name=123 that I want to direct the user to if the user visits any of the following aliases: www.example.com/alias?name=123 …
3
votes
2answers
166 views

MVC: “The incoming request does not match any route.” - with a default request

I am getting this error only SOMETIMES (apparently randomly, though I know there's really no such thing in computers). I'm working on an MVC (release 1) site in VS 2008. The machine is running …

1 2 3 4 5 11 next
15 30 50 per page