Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
6k views

External django redirect with POST parameters

I'm trying to create a redirect in a Django view to an external url with some get parameters attached to the request. After doing some looking around and some trying around, it seems I have hit a road ...
1
vote
1answer
215 views

POST/GET bindings in Racket

Is there a built-in way to get at POST/GET parameters in Racket? extract-binding and friends do what I want, but there's a dire note attached about potential security risks related to file uploads ...
1
vote
1answer
640 views

ASP.NET MVC POST Parameter into RouteData

I'm using jQuery to POST an Id to my route, for example: http://localhost:1234/Load/Delete with a POST Parameter Id = 1 I'm only using the default route in Global.asax.cs right now: routes.MapRoute( ...
0
votes
2answers
121 views

Ajax post to same page and reload the page without destroying the post parameters

Anyone knows how to preserve the post parameters after windows.location.reload(true) ? function handler(event,ui) { $(this).find(".thumb").remove(); $(this).append('<img class="thumb" ...
0
votes
1answer
174 views

How to extract post parameters in API - Lift framework

Hi I am using the following for my api in Lift: case "api" :: "all" :: _ Get req => for { val after <- req.param("after") val before <- req.param("before") val limit <- ...
0
votes
0answers
152 views

Facebook Real Time update : Post format/return parameter name

I'm developing a new facebook app to use facebook's real time update fantsatic option. I'm using C# Facebook's SDK to aim my goal. My probleme is that I don't know how to extract facebook response ...
0
votes
2answers
239 views

Passing POST data from Javascript(jquery) to php problems?

I been trying to passing this value: // Content to submit to php Others string here. And this link: http://www.youtube.com/watch?v=CUUgKj2i1Xc&feature=rec-LGOUT-exp_fresh+div-1r-2-HM to a php ...
0
votes
3answers
3k views

post request with link_to in rails 3

How do I make a remote POST request with custom parameters with a link_to helper in rails 3? I tried something like this: link_to 'Submit', model_path, :query => "value", :remote => true, ...
0
votes
2answers
670 views

Apache mod_rewrite question

I have an application running under tomcat 6. In front of it I have an apache server which is forwarding all requests. That is, the user "talks" to the apache and not to tomcat. For some reasons the ...