Post/Redirect/Get (PRG) is a web development design pattern that prevents some duplicate form submissions, creating a more intuitive interface for user agents (users). PRG implements bookmarks and the refresh button in a predictable way that does not create duplicate form submissions.

learn more… | top users | synonyms

0
votes
0answers
34 views

PHP_SELF form and Back Button action

So I have a php page called "view_employee.php" on that page, the user can press an "Edit Divisions" button and go to the "edit_employee_divisions.php" page. That page contains a form that submits to ...
0
votes
0answers
20 views

ZF2 fileprg with files in collection

I can't get fileprg plugin to work with the files in a collection. I am trying to upload multiple files using FormCollections, but in $form->getData() there is no key related to my collection or ...
1
vote
1answer
27 views

Redirect multiple folders to single folder

I was wonder if it's possible to do the following: So, when you get a new hosting, you start with only a few folders right? .. and then you add a few more folders, css, js, imgs, assets, media... and ...
0
votes
0answers
27 views

Doing PRG twice, how to get old attributes instead of newer ones on history back

I had a problem which required PRG to fix and was answered here: how to manage session attributes due to post requests, and history However, I seem to have another problem. Once the initial PRG ...
2
votes
1answer
98 views

Keep incorrect user input after POST/Redirect/GET using yesod-form

Recently I stumbled across the following problem: Using yesod I wanted to Display an applicative form and let the user POST his data to a special Handler On FormFailure redirect the browser to the ...
0
votes
1answer
23 views

What status code should be used if somebody sends a GET request to a POST endpoint?

I have a URL: /item/delete/ It accepts a POST request. When it gets the POST request, it deletes the item indicated in the POST payload, and does the PRG dance. What do I do if it receives a GET ...
0
votes
0answers
49 views

PRG pattern or anything similar in ASP.NET WebPages

The question is centered around this concept: A website based on asp.net-webpages includes a form that when submitted executes a page, which includes the WebMail Helper. That page then requests the ...
2
votes
2answers
465 views

PHP Post/Redirect/Get Failing with Google Chrome

I have tried to implement the POST/REDIRECT/GET design pattern in PHP and it works with Safari but not Google Chrome (for Mac) when I redirect to the exact same page. If I vary the URL slightly (say ...
0
votes
3answers
54 views

Redirect not stopping re-submission?

PHP $thisfile=$_SERVER["REQUEST_URI"]; if(isset($_POST['comment'])&&!empty($_POST['comment'])){ if($id!=0){ $comment=$_POST['comment']; if ...
0
votes
1answer
99 views

How do I implement Post-redirect-get on Google App Engine with Python?

I am developing an online bidding system on Google App Engine with Python. Regarding the post-redirect-get mechanism, I've been googling a while and still have no clear idea of how to implement it. ...
0
votes
0answers
39 views

Any re-POST “hole” in PRG and anti-forgery tokens?

If I've properly implemented post-redirect-get and anti-forgery tokens, is there still a "simple" scenario where somebody could accidentally re-post the same form data? I'm not talking about a ...
0
votes
1answer
38 views

Issues with Spring MVC @RequestMappings and redirects

I am experiencing problems with Spring MVC @RequestMappings and redirects. I have the following method in one of my controllers: @RequestMapping(value = "/activateEmail/{token}", method = ...
0
votes
1answer
139 views

Unable to take and echo PHP $_GET variable from URL although URL has appropriate form

i am at prototype stage. I made my custom e-mail php pages with post-redirect-get approach. my question is:I intentionally making mistake while filling e-mail form. Name must be alphanumeric but the ...
0
votes
1answer
111 views

how refresh login page after form valid fail without the confirm box in django?

this is my login func in view.py def login_user(request): form = LoginForm(request.POST or None ) if request.method == 'POST': if form.is_valid(): username = ...
3
votes
2answers
355 views

Performing a redirect from a spring MVC @ExceptionHandler method

I want to have the following method: @ExceptionHandler(MyRuntimeException.class) public String myRuntimeException(MyRuntimeException e, RedirectAttributes redirectAttrs){//does not work ...
2
votes
1answer
99 views

JSF PRG with validation error

I'm using JSF with the PRG pattern. (use in my navigation rules). The problem is that the redirect is not done (i.e. a post followed by a get of the same page) when I got validation errors (ex : the ...
2
votes
1answer
198 views

Post-Redirect-Get when passing data to the form?

I have several scenarios where a servlet needs to pass data to a form in a JSP from the retrieved records from the database. Currently, I'm storing this information in the request, using a ...
0
votes
1answer
178 views

Error loading page after redirect to an MVC3 action

Scenario: I have a view (let's call it Index.cshtml) that posts a form to a controller action (let's call it GetWorkList). GetWorkList runs and then returns a partial view WorkReport. After that the ...
0
votes
0answers
72 views

Processing forms in PHP, avoiding XSS injection and PRG pattern

I hope you're all having a nice day, I'm building a form in PHP that deals with files etc and I need it to be very secure, so I don't want it to be XSS vulnerable (example by injecting a base-64 ...
1
vote
2answers
126 views

Prevent browser error going to previous page again

Hope someone help me about this problem.. I have a form to select needed categories for users. I use check boxes for this form to let them to select categories. At the time they selected categories I ...
0
votes
1answer
135 views

POST/Redirect/GET with Error handling

The reason for this post is that I am trying to avoid the "form re submission error" that most browsers give off when a form is refreshed. Take the following example: The user is on a page called ...
4
votes
3answers
299 views

MVC PRG pattern with children

I am trying to implement the PRG pattern by using the [ImportModelStateFromTempData] and [ExportModelStateToTempData] action filters. This pattern works great for flat models but I cannot get it to ...
0
votes
1answer
83 views

Using Post/Redirect/Get with data before the redirect… meta-refresh?

I have been doing this for a while now, but still get confused when it comes to PRG. I know how it works so for example I would do: if($_POST){ header("Location: ".$_SERVER['REQUEST_URI']); exit(); ...
-2
votes
1answer
225 views

How to apply post redirect and get pattern in node.js?

I am testing with a very simple application in node.js where I create and save an application. I show the post form with the newPost function and I receive the post with the data in the savePost ...
0
votes
2answers
92 views

how to change url to main view when return the view because of validation errors in a PRG pattern

I've noticed that when the view is returned because of validation errors , the url still points to the action that has done the validation : for example in Edit View there is a form to Update action: ...
0
votes
1answer
139 views

What situations require Post-Redirect-Post pattern of requests? [closed]

I was reading this highly voted post on stackoverflow regarding a Post-Redirect-Post pattern instead of the normal/default Post-Redirect-Get (PRG pattern, I think it is called ). I was wondering ...
2
votes
4answers
855 views

How to prevent duplicate entries while refreshing?

I have a index.jsp page where I have a form where user enters some data that get stored in the database using a Controller servlet. I want to display the same page (index.jsp) with that form after ...
4
votes
3answers
1k views

ASP.NET MVC: post-redirect-get pattern, with two overloaded action methods

Is it possible to implement post-redirect-get pattern, with two overloaded action methods (One for GET action and the other for POST action) in asp.net-mvc. In all of the MVC post-redirect-get ...
1
vote
2answers
141 views

Implementing post-redirect-pattern on ajax scenario

Consider the following scenario: I have a page that can open a dialog (jquery dialog). This dialog allow the user to update some values or even insert new ones. The user, sometimes, clicks several ...
1
vote
3answers
198 views

Asp.Net MVC RedirectAction or Shared method

In an action of my controller, I must execute another action of the same controller. Both actions are in the same security context. Should I have to call a RedirectAction to execute the other action ...
0
votes
1answer
125 views

Cleaning up post action in MVC

I'm using PRG for cleaning up my posts in MVC On the POST action I store the controller modelstate in tempdata using an action filter and then redirect to the GET method which reloads the ...
0
votes
2answers
220 views

How to maintain form state after Post-Redirect-Get in ASP.net?

Imagine a page with a form input: Search Criteria: crackers                   From: ...
0
votes
1answer
107 views

PHP OOP message keeps displaying on page refresh

I have a relatively simple class which deletes a post: function delete_post($postid, $reason){ //Stuff to delete post $this->delete_response = 'Thanks, your course has been ...
0
votes
1answer
143 views

Object Oriented PHP to pass message to user upon success of function

I am new to OO php so this may seem basic.. Basically I have a list of courses a user can book. I have got it so the user can remove the course from their list, but I want a message to be displayed ...
1
vote
0answers
225 views

Prevent duplicate form submission while maintaining viewstate in asp.net

I have a form that people can use to upload files, and I want to make sure that pressing the refresh button after an upload does not trigger a duplicate upload. The methods I'm considering are session ...
3
votes
1answer
796 views

Back Button behaviour after Post-Redirect-Get

My application disables caching on the browser via responses headers and then uses the Post-Redirect-Get pattern to enable the back button to "re-Get" the current page. However on retesting this now ...
3
votes
3answers
2k views

Understanding “post/redirect/get”

I am having a very hard time understanding the exact process of "post/redirect/get". I have combed through this site and the web for several hours and cannot find anything other than "here's the ...
0
votes
1answer
139 views

post/redirect/get passing form data directly to get

The Post/Redirect/Get idiom is used when generating a REST page from a POST query. The POST puts data into the database, and the GET retrieves it and generates the page. How can such an ...
0
votes
3answers
413 views

Options for passing data across HTTP redirects

I am working on a Web application and need to pass data across HTTP redirects. For example: http://foo.com/form.html POSTs to http://foo.com/form/submit.html If there is an issue with the data, ...
1
vote
2answers
643 views

Response.Redirect() disables back-button

As far as I understand, Response.Redirect("http://stackoverflow.com"); tells the browser to initiate a request to another URL. One of the results of this is that the browser "remembers" the ...
1
vote
1answer
172 views

Changing view vs Redirecting in ASP.net MVC3

There are several advantages of having doing a GET_POST_REDIRECT after an operation; however in absence of making a redirect, we return a View i.e. return a different view (after POST return an Index ...
3
votes
2answers
719 views

Post-Redirect-Get with Internet Explorer

I have a web page that implements the post/redirect/get pattern to avoid double posts in a simple CRUD application. The intended request/response sequence here is: browser sends data via POST ...
5
votes
1answer
402 views

Chrome history bug maybe - doing PRG, and when navigating again to the same form - no history entry is added

There is a strange back button behavior occurring only in Chrome. I have two pages - Grid and a Form the scenario: 1. When navigating from the Grid to the Form everything is fine - the Grid is added ...
0
votes
1answer
1k views

How to use RedirectToAction while passing view model to a view with different route

I have a ASP.NET MVC 3 app with a common scenario where there is with an "About" controller using "Contact" and "ThankYou" actions. I want user to go to /about/contact, fill out the form, submit it, ...
2
votes
1answer
249 views

Post-Redirect-Get (PRG) Summary Page on Submit

So I read up on this method called PRG as a way of addressing the form double-submit issue. However, I have yet to find a descent implementation of the Summary Page / Success Message displayed to the ...
0
votes
1answer
214 views

PHP | Having a hard time implementing the PRG Pattern (Form Re submission)

First I am new to PHP. I have been working on a personal project for real-estates in my city. The problem is with the form re-submission on back/refresh. I've read everything I possibly got my hand on ...
3
votes
2answers
1k views

MVC 3 How to make a form with Post Redirect Get method while maintaining views

I've read a LOT on Stack and read a few articles else where on how to design a proper form. I ended up adopting the PRG method. article here The problem I'm having is actually getting it to work in ...
1
vote
1answer
522 views

Simple flow management in Post-Redirect-Get pattern

i'm looking for best practice for navigating from one page to another based on Post-Redirect-Get pattern in jsf 2.0 I previously worked with spring webflow and it's amazing framework, but i'm looking ...
0
votes
1answer
262 views

How do I perform error handling in ASP.NET MVC 3 controller?

I have an Account controller which have: LoginForm (get action) Login (post action) RegisterForm (get action) Register (post action) In another controller's index action i use render them as: ...
3
votes
1answer
736 views

includeViewParams=true doesn't work in templated pages

Consider this template: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" ...

1 2 3