0
votes
0answers
5 views
Page_Validators is not defined problem
Hi
i am using asp.net routing
when using ValidatorEnable function in javascript i got this error 'Page_Validators is not defined'
how to solve this?
i am using this code in my …
2
votes
3answers
73 views
Can someone please explain to me in clear, layman’s terms what the deal is with mapped resources and named routes in Ruby on Rails?
I've been using Ruby for the first time on a project at my work, so I am still somewhat learning the ropes (and loving every minute of it).
While I understand the point of the map …
0
votes
2answers
38 views
rails url rewriting
Hi,
I have a controller person with an action searchPerson which takes a name as parameter and redirects to the person details if it founds the person else it renders the searchPe …
0
votes
1answer
54 views
CakePHP and admin routing with a ‘catch all’ action.
I'm trying to build a mini cms, whereby all urls go to the index action of a 'products' controller.
The products_controller checks the url and treats it as a parameter, so '/widge …
0
votes
1answer
23 views
Rails: Proxy Pass??
I've got a web-app that I want to migrate to Rails, which is currently just plain HTML with an Apache proxy to another server, running a custom database/webserver that serves the s …
0
votes
1answer
34 views
Rails RESTful Routes: override params[:id] or params[:model_id] defaults
Hello, I'm trying to understand how to change this rule directly on the map.resources:
supposing I have a route:
map.resource :user, :as => ':user', :shallow => true do |us …
0
votes
1answer
30 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
22 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
2answers
41 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
0answers
20 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
87 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 - …
1
vote
3answers
130 views
MVC Catch All route not working
My first route:
// Should work for /Admin, /Admin/Index, /Admin/listArticles
routes.MapRoute(
"Admin", // Route name
…
5
votes
5answers
414 views
How can I have lowercase routes in ASP.NET MVC?
How can I have lowercase, plus underscore if possible, routes in ASP.NET MVC? So that I would have /dinners/details/2 call DinnersController.Details(2) and, if possible, /dinners/m …
0
votes
3answers
46 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
1answer
84 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 …
