1
vote
4answers
39 views
+200
Moving the :format attribute in routing from the end to beginning of route
In my application, I am trying to get my API to mimic GitHub's in how it has the (.:format) in the beginning of the route rather than appending it optionally at the end.
Here is my code that is …
0
votes
1answer
25 views
Migrating from Drupal to Rails - Routing
I've developed a new Ruby on Rails site for my organization. I want the new Rails site to intercept incoming requests that were meant for the old site and display a message for the user indicating …
0
votes
1answer
11 views
MVC Advanced Routing
I am attempting to route a URL that does not have a static action i.e. Users can create systems which can be represented by any string. I would like to have a URL like the following:
…
2
votes
1answer
37 views
asp.net mvc force style of get url on form
I have a simple form for searching for a user
<p>Enter a user's id number to search:</p>
<% using (Html.BeginForm("Search", "UserAdmin", FormMethod.Get)) { %>
<%= …
1
vote
2answers
25 views
Ruby on Rails: Routing for a tree hierarchy of places
So we've got a legacy system that tracks places with IDs like "Europe/France/Paris", and I'm building a Rails facade to turn this into URLs like http:// foobar/places/Europe/France/Paris. This …
0
votes
1answer
27 views
IIS routing configuration error with ASP.NET MVC?
I am unsure if my title was accurate enough. I am trying to make SEO URLs for my website which is developed in ASP.NET MVC. I configured my route to include:
routes.MapRoute(
…
0
votes
4answers
35 views
ASP.net MVC HttpException strange file not found
I'm running asp.net MVC site on IIS6 - I've edited my routing to look like the following:
routes.MapRoute(
"Default",
…
0
votes
0answers
3 views
url routing in webforms and directorylistmodule
I found a post in asp.net:
URL Routing overrides Directory Listing
I met the same problem with the post's description.
So in a host enviroment, i have no rights to reorder the list modules in iis7, is …
2
votes
1answer
16 views
How to create a RouteValueDictionary given a virtual path
Hello
I would like to know if there is a method that, given a virtual path, will return a collection of parameter names and values for a route that matches the path. I need this to get the parameters …
1
vote
2answers
301 views
Rails: Routing subdomain to a resource
Is it possible to map a subdomain to a resource? I have a company model. Currently, using subdomain_fu, my routing file contains:
map.company_root '', :controller => 'companies', :action => …
1
vote
3answers
391 views
System.Web.Routing with WebForms - picking up variables in the target page
I have the pattern User/{domain}/{username} set up via Routing. Everything works except for one thing. I can't figure out how to get the domain and username variables passed to my redirected page. …
0
votes
0answers
24 views
Zend Framework Modules and Routing Issue
I have the following structure setup in my project
application/
--modules/
----accounts/
------controllers/
------models/
In addition to the default structure provided by Zend 1.9.5. now under …
2
votes
1answer
222 views
Deploying ASP.NET MVC 2 Preview 2 with Areas
We migrated from MVC 2 Preview 1 to MVC 2 Preview 2 to using multi-project areas. Everything works perfectly on local dev machine (Visual Studio 2008 SP1/IIS 7), however, it's does not work after I …
2
votes
1answer
32 views
Zend Framework: How to disable default routing?
Hi All,
I've spent many hours trying to get this to work. And I'm getting quite desperate.
Would be great if someone out there could help me out :)
Currently using Zend Framework 1.9.5, though I …
1
vote
2answers
57 views
How Can I Stop ASP.Net MVC Html.ActionLink From Using Existing Route Values?
The website I'm working on has some fairly complicated routing structures and we're experiencing some difficulties working with the routing engine to build URLs the way we need them to be built.
We …
