0
votes
1answer
17 views
When would I use my own RouteHandler?
I understand that in ASP.Net DynamicData (and maybe regular ASP or MVC) I can provide my own RouteHandler
routes.Add(new DynamicDataRoute("{table}/{action}.aspx") {
RouteHandl …
0
votes
0answers
11 views
ASP.Net Security By Route
I'm working with ASP.Net Dynamic Data and I have a section in my web.config like this:
<location path="Foo/List.aspx">
<system.web>
<authorization>
& …
0
votes
1answer
12 views
Rename ReturnUrl literal in asp.net mvc
I put the authentication attribute that sets:
filterContext.Result = new HttpUnauthorizedResult();
so when I try to access
http://www.mysite.com/Forum/Polls
and I am not aut …
0
votes
2answers
38 views
How to use rspec to test named routes?
Hi there,
Given I have a named route:
map.some_route '/some_routes/:id', :controller => 'some', :action => 'other'
How do I use the routing spec file 'spec/routing/some_ro …
0
votes
1answer
29 views
Trouble redirecting string[]
I have a form that posts several like named elements to an action like so:
<%= Html.TextBox("foo") %>
<%= Html.TextBox("foo") %>
<%= Html.TextBox("foo") %>
pos …
1
vote
3answers
44 views
Ruby on Rails conditional routing
I have a site listing many jobs, but I also want each account to be able to access its jobs in one place. Thus, I am using these routes:
map.resources :jobs
map.resource :account, …
0
votes
2answers
37 views
Problem with Symfony routing with online project
I have a Symfony project on a Win XP / IIS 7 machine with Isapi rewrite installed. When I go to the frontend (my main) application, it seems that the routing simply doesn't work. I …
1
vote
3answers
46 views
ASP.Net MVC Routing issue with Html.BeginForm
Using MVC, I have an html form helper in my view:
using (Html.BeginForm("ActionOne", "ControllerOne")) ...
Using the default route, the output for the action attribute is as exp …
0
votes
0answers
11 views
MVC routing is not handling one of my directories
I'm using ASP.NET MVC with IIS 7.0. I've got 404 errors hooked up fine through my Application_Error override.
In addition to "Controllers", "Models", "Helpers" etc. I have a dire …
0
votes
3answers
30 views
Move from Dev Server to Prod Server - The incoming request does not match any route
I have developed an app on a dev machine using ASP.Net MVC and all is fine and it works. I have moved it to the Prod Server and when I type http://mydomain.com I get the error:
Th …
0
votes
1answer
44 views
MVC : Separate admin controllers
I was wandering if there is option to do the following
If I call
"admin/Category" - to call "CategoryAdminController"
If I call
"Category" - to call "CategoryController"
It is …
0
votes
0answers
19 views
Url.Action and routeValues inheritance
Suppose I have the following route (MVCContrib syntax).
MvcRoute.MappUrl("{node}/{action}/{destination}")
.WithDefaults(new { Controller = "Document"})
.WithConstraints(new { …
0
votes
2answers
56 views
What is the appropriate route design for this ASP.NET MVC application?
My url http://server/region/section/item
Now if someone goes to http://server/us/ I want to display a page to choose a section
if someone goes to http://server/us/beer/ I want to …
0
votes
2answers
23 views
How to configure routing for a java web app
Is there an easy way to rout all requests (except a few specific cases) for url "mysite/" to path "mysite/index.html?"
Is it possible to do it only by editing web.xml file?
0
votes
3answers
35 views
Using rails ‘vendor’ folder for third party plug-in
I have a small third party flash application I'd like to incorporate in my rails app, but I am struggling to get it working properly.
I believe it belongs in vendor opposed to li …
