0
votes
5answers
267 views
ComponentNotRegisteredException Probs - ASP.NET MVC
Hi All,
I recently upgraded a project I am working on to RC1 and I am absolute pulling my hair out. I am using AbsoluteRouting and I keep getting the following issue which is preventing me from …
1
vote
1answer
41 views
Rails custom routes question
I have an aplication that has an User and a Project model. I have the following relationships between those 2 models:
USER
has_many :authorships , :foreign_key => :author_id
has_many …
0
votes
0answers
15 views
Double slash in resources
I get a application running over:
Rails 2.3.5, Application is set 2.1.0 at enviroment.rb
Ruby: 1.8.7 (2009-06-12 patchlevel 174) [i686-darwin10.2.0]
The Urls are generated right, but the resources …
0
votes
1answer
15 views
ASP.NET PageMethods and The HTTP verb POST used to access path is not allowed
So, I'm using URL routing with WebForms. I run locally through the Visual Studio web server, and everything is hunky-dory. I deploy locally to IIS (XP, so it's IIS5), and therefore I need to make sure …
0
votes
1answer
15 views
Rails route globbing vs. escaping?
Hi. I'm trying do something like this:
map.goto '/g/*extra', :controller => 'goto', :action => :show
Where extra is a path component, e.g.:
redirect_to goto_url( employee_path(employee) )
…
3
votes
1answer
52 views
How to handle all URLs from 1 page using PHP?
I would like to redirect all urls from the webpage (what ever what's after the domain name) to a single webpage that will analyse the complete url and will show the good page and information. I know …
1
vote
1answer
135 views
Breaking my head to get Url Routing in IIS 7 hosting environment : ASP.NET
Hi
I am trying to implement ASP.NET URL routing using the System.Web.Routing. And this seems to work fine on my localhost however when I go live I am getting an IIS 7's 404 error (File not found). …
0
votes
2answers
44 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") %>
posts to and returns:
…
1
vote
0answers
52 views
Is it OK to send a 301 redirect with an action filter?
I'm writing a new asp.net mvc application and I've been toying with the idea of allowing my user to post short, concise urls to content that he has posted. Those short url's will be handy in cramped …
0
votes
1answer
11 views
URL Structure Parent to Child Relationship With Static Files
Currently I can not show site structure in the url IE www.site.com/parent-page/child-page without creating a subdirectory at the root. Is there an easy way to dynamically create the parent to child …
0
votes
0answers
38 views
best url for heirarchical data crud operations
I have 4 one-to-many relationships in a row so that each entity essentially has a parent entity. What is the best way to do this. Heres what i have so far?
for the entities - Items -> Gallery -> …
1
vote
2answers
57 views
Python Selector (URL routing library), experience/opinions?
Does anyone have opinions about or experience with Python Selector? It looks great, but I'm a bit put off by its "Alpha" status on pypi and lack of unit tests.
I mostly like that its simple, self …
1
vote
0answers
46 views
Rails will_paginate routing caching duplicate pages
I use the will_paginate plug-in.
In oder to generate routes that I can cache ( /posts/index/2 instead of /posts?page=2) I added the following to my routes.rb:
map.connect '/posts/index/1', …
0
votes
1answer
28 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:
…
0
votes
3answers
53 views
MVC Custom Routing
I'm new to MVC. I'm having trouble trying to accomplish having a route setup in the following manner:
System/{systemName}/{action}
Where systemName is dynamic and does not have a "static" method …
