3
votes
0answers
81 views
+100
Why do route decorators break routing in ASP.NET MVC 2?
I have a web application using MVC 2 Preview 2 and after all routes are registered, I need to wrap each route in a decorator further down the chain. The problem is, doing so breaks …
0
votes
2answers
28 views
What is the reverse of GetVirtualPath for asp.net routing?
From a virtualpath, I need to get his name.
How can I do this?
Since people think that I'm talking about file system here an example of what I need.
With asp.net routing you can …
2
votes
4answers
46 views
Choosing routing.yml based on user culture?
In my Symfony application I would like to choose the routing.yml based on the current user's culture;
'en' => routing.en.yml
'no' => routing.no.yml
and so forth.
Any sugg …
1
vote
3answers
66 views
Rails app in different language?
I want to create my app using spanish controllers/methods.
can I use scaffold?
scaffold created methods like new, create, edit, etc
I want to change those to be nueva, crear, ed …
1
vote
2answers
61 views
Help with rails routes
I seriously cant understand why this is so hard... I have some experience with other mvc frameworks but always heard rails was the easiest to code in.... right now I cant even get …
0
votes
0answers
32 views
A can ping B, B can ping C but A cant ping C. How do i connect A to C (ethernet)? [closed]
I have a computer at home with ip 192.168.221.xxx I have another computer at work that I can ping and it has 2 ip addresses: 192.168.1.xxx and 192.168.0.xxx. Those last 2 addresses …
0
votes
0answers
21 views
Sub-net Routing [closed]
Applications hosted on servers located in the same subnet cannot reference domain names (VIP) hosted on the load balancer for the subnet.
Assumption: server A and server B are hos …
0
votes
2answers
58 views
ASP.NET MVC - Shortening urls
I am developing an international web site - multiple countries, multiple languages. I am trying to create SEO friendly URLs.
For example the catalog consists of cartesian product …
0
votes
1answer
21 views
Rails & jQuery - getting UnknownAction error when checking username availability
Hi - I'm trying to write a small jQuery method that works on my rails site and check if a username is available. This is all handled in the users_controller.rb and on the form:
&l …
0
votes
1answer
23 views
creating a route for my search param
I'm aware of dynamic routes but I'm a little stumped with this, with the search gem I'm using it performs a get and my route is thus myapp.local/recipes?search=chicken
How can I m …
2
votes
2answers
157 views
ASP.NET MVC routing and areas
I am messing around with ASP.NET MVC 2 Preview 2 and am trying to figure out how routing works with areas and such. In a single project implementation of areas, I want an area nam …
1
vote
2answers
50 views
ASP.NET MVC - Verify the Existence of a Route
My ASP.NET MVC application has a scenario where user input can directly influence the target of a call to RedirectToAction() (by way of a string) and there is a chance that the use …
2
votes
2answers
50 views
.NET MVC custom routing
I was wondering if I could create a routing map with one more higher level than the controller. The typical routing would include "/controller/action/id". What I am looking for is …
0
votes
2answers
36 views
help with rails render action vs routing
I was using some image cropping example that I found online and now I got confused. There is actually no "crop" method in my controller. Instead (following the guide) I put a
re …
1
vote
3answers
54 views
Asp.Net MVC Routing - how do I match the whole URL?
I'm trying to create a catch-all route to track when an affiliate string is in the URL. An affilite code is marked by an x followed by an int, and will only appear at the end of a …
