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
2answers
20 views
Named Routes & link_to problem
I have the following routes set up:
map.people 'people(.:format)', :conditions => { :method => :get }, :controller=>"people", :action=>"index"
map.connect 'people(.:fo …
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 …
0
votes
2answers
83 views
Asp.Net MVC wrong URL being generated by Url.Action!
Hello Everyone,
I search and read all the questions i could find here and in google, and I can't seem to find the answer!
The Rout in questions is this:
routes.MapRoute("Admin - …
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 { …
1
vote
1answer
69 views
ASP.NET MVC - Localization route
Hi,
i'd like to create localized URL's for my site. They should obviously point to the same controller actions, but I want the first routevalues to -always- be the location/langua …
0
votes
3answers
40 views
Removing white space of urls with - in cakephp routing?
I have a URL like
http://abc.com/users/index/University of Kansas and i want to make it University-of-Kansas. How is it possible via mysql using Cakephp ???
1
vote
3answers
60 views
How to use asp.net MVC routes to create Twitter style homepage
I'm trying to create twitter.com/rob to go to a dynamic page (using account/viewuser) as well as allowing twitter.com/help to go to a help page (help/index).
The below code doesn' …
1
vote
1answer
37 views
Is it possible to have file-system-like routes with acts_as_tree?
I have a Folder model which acts_as_tree.
Is it possible that the routes represent the folder structure?
Folders:
1: Folder A
2: Folder B
3: Folder C
4: Folder D
5: Fold …
0
votes
2answers
53 views
Rails routing with date and has many
I've got the following setup:
map.resources :articles
map.resources :users, :has_many => [:articles]
Which is fine as I can do /users/2/articles to get a list of articles b …
1
vote
2answers
68 views
How can I do this ASP.NET MVC 1.0 code in MVC 2.0 ?
Hi folks,
I'm converting one of our ASP.NET MVC application from 1.0 to 2.0.
This is code that is erroring :-
string virtualPath = HttpContext.Request.ServerName() +
RouteTa …
0
votes
0answers
24 views
VMWare Workstation: How to access the virtual disk from the host system? [closed]
Hi there,
I would like to access the disk of a VM from host or even better from LAN. The VM runs a Windows XP. The easiest way would be an access to the c$ share.
Peace,
Ice
0
votes
5answers
64 views
Session Fixation in ASP.Net MVC
Is it possible to block an action to be executed directly from the browser, but still be able to redirect to it from inside the site? I know it sounds stupid but this is what I wan …
1
vote
1answer
43 views
MVC 2 AreaRegistration Routes Order
I noticed that in MVC 2 Preview 2, AreaRegistration is loading the routes for each area in an arbitrary order. Is there a good way to get one before the other?
For example, I have …
0
votes
1answer
22 views
routing urls and paths in rails
I have a controller which has a method called history
class UsersController < ApplicationController
def history
User.return_history(params[:id])
end
end
I have the …
