5
votes
4answers
103 views
Faking method attributes in PHP?
Is it possible to use the equivalent for .NET method attributes in PHP, or in some way simulate these?
Context
We have an in-house URL routing class that we like a lot. The way it works today is …
0
votes
2answers
50 views
How do you pass a POST method in a url manually?
I need to give an external payment site a return url to my site after a customer pays. It will be to my create action in a RESTful subscription controller.
Ive tried giving the payment site this
…
0
votes
1answer
20 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 subdomain like
…
0
votes
1answer
24 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 fine when I use …
1
vote
3answers
66 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 have the link "Use …
1
vote
0answers
20 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.9.5, though I …
3
votes
4answers
90 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 URL mapping (mine …
0
votes
1answer
33 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:
…
0
votes
4answers
67 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 = …
0
votes
1answer
55 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 local machine is using …
2
votes
1answer
72 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
Currently it is set as this …
0
votes
1answer
42 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 integrated admin interface …
1
vote
3answers
43 views
How to create different View depending on logged in user’s role in ASP.NET MVC?
I am kind of new to ASP.NET MVC, so need your help getting me through a problem:
In my application the LogOn will be done using the Role of the user. I have my custom database schema (like User, …
0
votes
2answers
32 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
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 ???
