0
votes
1answer
19 views
ASP.NET URL Routing on root in IIS 6.0
Hi All,
I enabled a routing on ASP.NET web application running IIS 6.0 using
RouteTable.Routes.MapPageRoute("Simple", "{testvalue}", "~/Test.aspx"); in Global.aspx.cs
This works …
0
votes
1answer
18 views
URL_Rewriting with ISAPI_rewrite
I have a problem in ISAPI_rewrite 3.
a have a url like
www.example.com/web/index.html?ag=2154
What I want is, when the user writes this address it should be converted to agent's …
1
vote
0answers
14 views
Zend Framework: How to disable default routing?
Hi All,
I've spent many hours trying to get this to work. And I'm getting quite desperate.
Would be great if someone out there could help me out :)
Currently using Zend Framework …
1
vote
3answers
64 views
Django - links generated with {% url %} - how to make them secure?
If I want to give an option for users to log in to a website using https:// instead of http://, I'd best to give them an option to get there in my view or template.
I'd like to h …
0
votes
1answer
31 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 …
3
votes
4answers
89 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
52 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
1answer
32 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 …
0
votes
3answers
47 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
4answers
66 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
3answers
33 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 …
2
votes
1answer
70 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 …
2
votes
3answers
52 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
2answers
30 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
0
votes
2answers
26 views
Doesn’t ASP.Net MVC Differentiate URLs on number of arguments?
Somehow I had the impression that ASP.Net differentiates URLs based on the number of arguments too. But it doesn't seem to work in my project.
Consider the following function prot …
