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 …
2
votes
4answers
76 views
ASP.NET Friendly URLs
In my research, I found 2 ways to do them.
Both required modifications to the Application_BeginRequest procedure in the Global.Asax, where you would run your code to do the actual …
0
votes
1answer
33 views
CodeIgniter Routing / Htaccess / URI issues
Hi all,
I recently joined a team of devs and I'm trying to get an SVN checked out onto my local machine. Unfortunately, I've run into some issues with links and routing. My lo …
0
votes
4answers
64 views
Django Filtering Problem
I'm trying to set up a filter query in one of my views...basically my code looks as below:
def inventory(request):
vehicle = Vehicle.objects.all().exclude(status__status='In …
0
votes
1answer
22 views
Code Igniter url routing question (using trailing slashes)
I am brand new to codeIgniter.
I am very particular about urls on the sites that I develop. Is it possible to create these sorts of urls? Generally sites I develop have an integr …
2
votes
1answer
67 views
asp.net mvc optional parameter
I am trying here to kinda merge 2 routes in 1 with asp.net mvc
These routes are :
http://www.example.com/e/1
and
http://www.example.com/e/1,name-of-the-stuff
Current …
0
votes
3answers
41 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 ???
0
votes
2answers
26 views
how to use url routing in asp.net 4.0
how i can use url routing in asp.net 4.0 . how it is possible in asp.net 4.0 ;
are you provide some demo code , sample project for it
2
votes
3answers
51 views
URL Mod-Rewrite
Hello,
I currently have a working URL:
http://example.com/security-services.php?service=fixed-camera-surveillance
and then I have PHP say, $_REQUEST['service'] to do some st …
0
votes
3answers
133 views
CodeIgniter: Simple URL routing question
I'm new to CI and URI routing in general.
I created a new app. Set the default controller to Main. In Main, I have an index method, a popular method and a recent method.
When I l …
0
votes
3answers
32 views
Domains & Foreward Slash
Hi,
This is rather difficult to explain so please bear with me.
We will be hosting 4 websites on our server and the plan is to have each site sit under its own domain:
site-a.c …
3
votes
3answers
53 views
Directing non extension files to .php
I have a file with .php extention www.example.com/thefile.php?name=123 that I want to direct the user to if the user visits any of the following aliases:
www.example.com/alias?na …
1
vote
2answers
49 views
Remembering URL until authentication is complete
How do I remember a url in php to serve it to a user after authentication. The idea is the user will request the url but while unauthenticated. In this case, I forward him to the l …
2
votes
1answer
51 views
asp.net MVC and RESTful routing, rails-style. Is it possible?
Is there any way to get truly restful routing working in MVC, just like the rails dudes have? I 'm talking about nested urls like /bands/metallica/albums/killemall/track/4
The onl …
1
vote
3answers
68 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 …
