Tagged Questions

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

16
votes
3answers
513 views

Redirecting before POST upload has been completed

I have form with file upload. The files to be uploaded actually are pictures and videos, so they can be quite big. I have logic which based on headers and first 1KB can determine if the rest will be ...
9
votes
2answers
3k views

Post/Redirect/Get Pattern in ASP.NET MVC

What is the best practice for implementing the Post/Redirect/Get pattern in ASP.NET MVC? In particular, what is the best way to do this when you want to redirect back to the initial action/controller? ...
9
votes
6answers
961 views

How to display messages to the user after a POST + HTTP redirect

I’m using the PRG pattern to avoid multiple form submission. It has, however, a serious drawback — you cannot simply echo the confirmation message to the user (obviously, the user won’t see the page, ...
7
votes
1answer
524 views

Best practices for Post-Redirect-Get (PRG) with MVC in PHP

Is there any best practice for PRG pattern with MVC? In this tutorial: http://www.theserverside.com/news/1365146/Redirect-After-Post the proposed solution requires 4 actions: Create_Item (POST) => ...
7
votes
2answers
2k views

Full page reload on Post/Redirect/Get ignoring cache control

I have a page that loads a lot of images, css and javascript. I've added a far future Expires header and set Cache-Control to public on these external dependencies so they should be cached. But every ...
7
votes
2answers
2k views

Simple ASP.NET MVC CRUD views opening/closing in JavaScript UI dialog

I have various simple ASP.NET MVC views for CRUD operations which work fine on their own as a simple webpage. I will now integrate them into the website itself (into the content) and have for instance ...
5
votes
1answer
699 views

Should RenderAction be used with forms?

My setup: Have a view for a route like: /Pages/Details/2 The page details view has <% Html.RenderAction("CreatePageComment", "Comments"); %> to render a comment form Comment form posts to ...
5
votes
3answers
308 views

How are server side errors handled in Post/Redirect/Get pattern?

For the successful use case, the Post/Redirect/Get (PRG) work flow is pretty simple: simply redirect (client-side) to the desired page. But what about cases when errors are encountered during ...
4
votes
1answer
2k views

JSF 2 and Post/Redirect/Get?

Please correct me if I'm wrong, but I'm thinking of all of my non-AJAX submits should use the Post/Redirect/Get (PRG) way, since GET should be used to refresh/query data, and in my case, the ...
4
votes
2answers
430 views

Is the PRG pattern incompatible with AJAX form posts?

I am using the post-redirect-get pattern for all my forms, but now need to add AJAX functionality to improve the user experience. My initial thoughts are that the two do not mix. In the PRG scenario, ...
4
votes
2answers
1k views

How do I use the “Post/Redirect/Get” a.k.a. “Redirect after Post” with asp.net

Doing a refresh after certain action in asp.net seems to make them happen again even when that action doesn't make sense (think double delete). The web way to deal with this situation is to redirect ...
3
votes
2answers
707 views

Post Redirect Get in ASP.NET MVC And Validation With Restful URLs

I have a restful URL for the action of editing a page. This is implemented on the controller as an Edit method, which accepts GET requests and an Edit method that accepts POST requests. This means ...
3
votes
2answers
439 views

Post/Redirect/Get in Webkit causes a full page reload

It seems that in Webkit-based browsers (Chrome and Safari) when a Post/Redirect/Get is performed on the server, the entire page (html + images + css, etc.) is redownloaded. It appears the same as if ...
3
votes
2answers
1k views

How do I implement the Post/Redirect/Get pattern in asp.net WebForms?

So I understand the basics of the prg pattern. But I haven't come across a technique for making arbitrary data available to the "get" instance of a page. For example, I might want to display ...
2
votes
1answer
87 views

mvc3 PRG pattern

Is it bad practice when using the PRG pattern to show the currentId for the typed model in the URL (data posted to item with id=586 to controller -> controller handles data then redirects to get -> ...
2
votes
3answers
229 views

How to implement PRG pattern properly in asp.net webforms

I have a simple three page asp.net webforms site and having an issue with the back browser button that throws the popup "...Firefox must send any information that will repeat any action.." when ...
2
votes
2answers
193 views

How to achieve Post-Redirect-Get in a Wordpress plugin's admin menu page?

I am writing a Wordpress plugin, which adds an admin menu page. In the page is a form. When the form is submitted, the plugin writes to the database. But then I encounter a problem: whenever the user ...
2
votes
2answers
360 views

Best design pattern for associating subdomain with area and PRG pattern?

Now that the next version of ASP.NET MVC is being prototyped and previewed (ASP.NET MVC 3 Preview 1 came out a couple of weeks ago), I wonder if we should call the attention of the Core Dev team (S ...
2
votes
5answers
303 views

post/redirect/get

In producing a web-based data entry system, is the fact that you are adding an extra server request per page a significant concern when deciding whether or not to use a post/redirect/get design?
2
votes
4answers
563 views

Will redirect avoid double posting?

Probably not but i want to ask. Will redirect avoid double posting? I know there are better ways to avoid it but how do most double post happen? from my understanding its when the current page doesnt ...
1
vote
0answers
55 views

Flash attributes in Spring MVC 3.1 not visible to redirected JSP

I am using Spring 3.1's new Flash Attribute support to set flash attributes on a RedirectAttributes object in a Controller and then invoking a redirect. That redirect request is in turn caught by a ...
1
vote
1answer
55 views

POST without Redirect/GET?

A coworker of mine was working on preventing duplicate form submissions (on a successful submission, we are emailed and a DB entry is created). Submissions are not successful if there are errors on ...
1
vote
2answers
46 views

RedirectToAction not refreshing the page as expected

What am I doing wrong with my MVC code here ? The Index view includes a form that submits to itself, what I'd like is the controller to process the submitted form and then return to the View. What ...
1
vote
2answers
33 views

Error in code for header redirect

I have template.php file which gets include in each page , so now I want to add comment form to each page , I have added the form to template.php , only problem I was having is refresh causes ...
1
vote
1answer
319 views

JSF 2.0 - automatically include view parameters in url

I have simple jsf page with view params and load method which is processing those params: <f:metadata> <f:viewParam name="param1" value="#{bean.param1}"/> <f:viewParam name="param2" ...
1
vote
0answers
131 views

Mojarra loses view parameter

I am trying to implement post-redirect-get pattern in Mojjara. I have two pages with the same header and a search form in it. Both pages have included in their common template these two codes ...
1
vote
2answers
251 views

ASP.NET Wizard with Post/Redirect/Get

I am getting used to the Post/Redirect/Get pattern, I find it a very good procedure and it also seems to get me thinking more about page structure and not "relying" on ASP.Net events too often. I am ...
1
vote
1answer
256 views

Send http status 303 (See Other) in ASP?

How can i issue an http status code of 303 See other in ASP? Using: <%Response.Redirect "http://stackoverflow.com"%> issues a 302 Object moved to the client: HTTP/1.1 302 Object moved ...
1
vote
2answers
334 views

Post-Redirect-Get Model - Data Storage Methods & PCI Compliance

My question is on how to preserve data during the redirect when using the PRG Pattern on my forms. Specifically, I'm wanting to use this in an ecommerce application. I have three options of storing ...
1
vote
2answers
723 views

PRG in ASP.NET MVC but with object data transferred to the redirected action

Following the Post-Redirect-Get pattern as described in various spots but maybe in most detail here by Stephen Walter, I want to use RedirectToAction but it does not accept a parameter for sending an ...
1
vote
1answer
232 views

asp.net Post/Request/Get question about validation

I'm trying to figure out a logical and quick way to implement the "PRG" design style in a small site I'm doing, and I'm finding an issue I can't think of a good way to solve. I have a form. It has 2 ...
1
vote
2answers
245 views

DIY Form handling, PRG, Validation

I would like to implement form handling for web apps. I'd like to implement PRG (post-redirect-get), as I believe it is the way to go in form handling (plays very nicely with reload and back button). ...
0
votes
1answer
41 views

call to header() fails sporadically with 'header already sent'

I've had stable php code in my site in a file findRecords.php as follows: // inside findRecords.php.... <HTML> <head> <?php include 'titleBar.php'; include 'topNavigationBar.php'; ...
0
votes
2answers
27 views

Do session attributes show in URL when handling post redirect in Spring MVC 3?

I am handling forms in Spring MVC and I submitted a form and I am trying to redirect the post request to avoid resubmitting the form with refresh button. But I need a dynamically generated value to ...
0
votes
1answer
28 views

how to pass an object to the GET handler with Post-Redirect-Get with Spring MVC?

I'm new to Spring MVC and trying to get a Post/Redirect/Get pattern working. We're trying to implement a survey where each page can display a variable number of questions. The way I'd like to ...
0
votes
1answer
26 views

post/redirect/get and saving database query in SESSION

I'm new to post/redirect/get. I'm coding up the first real site that led me to discover the need for PRG. So I had written and gotten working code that did the following: 1) user enters a search ...
0
votes
1answer
21 views

heredoc interfering with header() in Post/Redirect/Get scenario

I have a heredoc form (shown below) inside addToDb.php. The form posts back to addToDb.php when the user clicks the submit button on the form (the 'ADD RECORD' button in the form below). After ...
0
votes
2answers
27 views

What response code to return for insecure POST not acceptable?

If somebody accesses my server via http (i. e. not https) then I redirect GET requests to the https version. But I don't know what to do with POST and PUT because I cannot redirect them (the browser ...
0
votes
5answers
38 views

PHP reload issue

I have the following php script: <?php $name = $_REQUEST['name']; $email = $_REQUEST['email']; $subject = $_REQUEST['subject']; $message = $_REQUEST['message']; $submit = $_REQUEST['submit']; $to ...
0
votes
1answer
109 views

return 401 error code on POST, but also redirect to referring page

I'm using the post/redirect/get pattern in my asp.net mvc 3 web application. Typically, if you submit a POST that triggers validation, you get a 302 redirect back to the original page, so the user can ...
0
votes
0answers
86 views

post-redirect-get work around for IE cookies policy

The scenario is: I have a very old classic asp application (http://www.old.com) which has not been released for ages (and in this company a "release" is a synonim for vasectomy). I need to display ...
0
votes
0answers
39 views

Is there a name for the PRG pattern that doesn't redirect on failed validation?

My website follows the Post-Redirect-Get pattern. There seems to be 2 ways to deal with failed validation. Either: Render the page with validation messages Temporarily store the validation ...
0
votes
1answer
133 views

.htaccess losing URL parameters/$_GET and $_POST after redirect

I have a php file like: http://www.domain.com/?mod=test&act=view And I want to create a redirection from that address to something like: http://www.domain.com/view-test so that everytime a user ...
0
votes
3answers
87 views

Post/Redirect/Get for a form posting to itself

I would like to implement the Post/Redirect/Get pattern in a page that will post to itself. The form is part of an MVC application I am building at the moment, and the form fields are generated in ...
0
votes
1answer
132 views

JSF 2.0 : change default behaviour from page forward to page redirect

I know there are some advantages in using page forwarding as it is the default in JSF. I also know how to set redirect for some pages using 'faces-redirect' in the implicit navigation or the tag in ...
0
votes
1answer
134 views

Implemented Post-Redirect-Get, now can't use Back button

I implemented the Post-Redirect-Get pattern to avoid the problem where a refresh of a web page offers the user the chance to repost the data. The redirect is being accomplished server-side with the ...
0
votes
1answer
42 views

post-redirect-get with notification about update

We usually follow the convention of doing a redirect after every post, which is ideally very clean. But usually there is a requirement to give the user feedback about what has been updated. When i do ...
0
votes
1answer
177 views

In MVC3, how do I override the TempDataProvider globally?

I'd like to change the TempDataProvider in an ASP.NET MVC3 application... I know I can do this on each controller by overriding CreateTempDataProvider... but I was wondering if there is a way to do ...
0
votes
1answer
283 views

JSP, Java, JSTL, and Servlets to implement PRG on MVC Management web app with login/logout

I'm using JSP, Java, JSTL, and Servlets to implement a basic store manager Web app. I'm attempting to implement the PRG (POST-Redirect-GET) pattern on top of the MVC (Model-View-Controller) pattern. ...
0
votes
1answer
96 views

Should I use the “post/redirect/get” pattern in this case?

In our web application, I am allowing users to edit their profiles, using a simple single-page form (similar to the profile in SO). I'm trying to decide whether to use the "post/redirect/get" ...

1 2