Click here to Skip to main content
15,867,308 members
Articles / Web Development / ASP.NET

Redirect and POST in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.78/5 (86 votes)
23 Jun 2009CPOL5 min read 633.3K   11.1K   107   150
An article that shows a simple workaround on how to make a redirect and POST to external URLs.

Introduction

Recently, I faced a situation where I have an application on which I needed to communicate with a third party payment application, where in some point, I will have to send information to that third party application using POST and not GET.

Background

Well, at first, that sounded easy, but that wasn't the case at all. I worked on this heavily, Googled intensively, tried hard with no good solution to satisfy my desire. Let's first see what our options are for submitting data (POST or GET) to a destination URL:

  1. Response.Redirect: This method is widely used and common, but it will only use the GET method in ASP.NET, and there is no way to do a POST using it.
  2. Server.Transfer: This method does a POST not GET, but ... unfortunately, it will only work when the source and destination are in the same application; therefore, if you are sending a request to a third party application, this will not work ... too bad :S
  3. Using HttpWebRequest: This is another method where you are creating the whole request from scratch, you specify the content, its type, write the data in a concatenated form of "&", then convert to bytes and submit the request by calling the GetResponse() method ... does it do a POST? Yes it does !!! Does it make a redirection to the destination UrRL? No, it doesn't !!! Even so, you will render the response on the browser for the user and the user will see the destination page perfectly, but any action on this rendered page will end with tears since you are still referring to the same origin of the request ... which is your application ... so any postbacks on that page will end up displaying 404 .. Page Not Found. (Why? Remember that default postback behaviour is always to the page itself ... that's why ;).)
  4. Using a WebClient: This method is my favourite of the listed ones ... because it's easy ... create a WebClient object, give it the destination URL, call the UploadValues method which takes a name-value collection (in which all of your POST data is available), render the response, and everything is POSTed perfectly to the destination URL; but like the previous option, you are still in the same place, which is your application ... so any postbacks on that page will end up displaying 404 ... Page not Found.
  5. HTML Submit button with POST form: Well, this is the standard way of sending POST data to any URL, whether it is in your application or in a third party application, but this will restrict you to have a Submit button, e.g., <input type="submit"/>, and that one will not, of course, do any server side event for you!!! And in one way or another, you are forced to press that button at some point ... no other way ... too bad :S

Note: if you have other methods .. keep it ... ;) I've had enough with what I have seen!

Now, let's imagine that I have a Response.Redirect method to which I give a collection of data and I tell it to do a POST method instead of a GET method ... wouldn't that be wonderful? I think that will be great ... really a simple wish! :)

Now, that's the whole point, to have a method to which I give a collection of data to be submitted to the destination URL and then all data is POSTed with redirection.

Using the code

I am attaching a file with this article, which has a class called HttpHelper. This class has only two methods: a private method PreparePOSTForm and a public method RedirectAndPOST. Of course, you will be only using the public one; the private one is just for encapsulating a functionality needed for the public one ... never mind ... you only call the public one and voila ... you are done!

Shown below is the use of this method:

C#
NameValueCollection data = new NameValueCollection();
data.Add("v1", "val1");
data.Add("v2", "val2");
HttpHelper.RedirectAndPOST(this.Page, "http://DestUrl/Default.aspx", data);

v1 and v2 will be POSTed to the destination URL with redirection; redirection means that you will be redirected to the destination URL and any postbacks there will occur successfully since you are completely transferred there.

But, how does the RedirectAndPOST method work to do the desired trick?!

C#
/// <summary>
/// POST data and Redirect to the specified url using the specified page.
/// </summary>
/// <param name="page">The page which will be the referrer page.</param>
/// <param name="destinationUrl">The destination Url to which
/// the post and redirection is occuring.</param>
/// <param name="data">The data should be posted.</param>
/// <Author>Samer Abu Rabie</Author>

public static void RedirectAndPOST(Page page, string destinationUrl, 
                                   NameValueCollection data)
{
//Prepare the Posting form
string strForm = PreparePOSTForm(destinationUrl, data);
//Add a literal control the specified page holding 
//the Post Form, this is to submit the Posting form with the request.
page.Controls.Add(new LiteralControl(strForm));
}

As you can see ... we prepare the POST form which is an HTML form that holds the hidden fields of your POSTed data and a script tag which holds the submit operation of the form .. which will be executed immediately upon the postback.

Below is the code for the PreparePOSTForm method:

C#
/// <summary>
/// This method prepares an Html form which holds all data
/// in hidden field in the addetion to form submitting script.
/// </summary>
/// <param name="url">The destination Url to which the post and redirection
/// will occur, the Url can be in the same App or ouside the App.</param>
/// <param name="data">A collection of data that
/// will be posted to the destination Url.</param>
/// <returns>Returns a string representation of the Posting form.</returns>
/// <Author>Samer Abu Rabie</Author>

private static String PreparePOSTForm(string url, NameValueCollection data)
{
    //Set a name for the form
    string formID = "PostForm";
    //Build the form using the specified data to be posted.
    StringBuilder strForm = new StringBuilder();
    strForm.Append("<form id=\"" + formID + "\" name=\"" + 
                   formID + "\" action=\"" + url + 
                   "\" method=\"POST\">");

    foreach (string key in data)
    {
        strForm.Append("<input type=\"hidden\" name=\"" + key + 
                       "\" value=\"" + data[key] + "\">");
    }

    strForm.Append("</form>");
    //Build the JavaScript which will do the Posting operation.
    StringBuilder strScript = new StringBuilder();
    strScript.Append("<script language="'javascript'">");
    strScript.Append("var v" + formID + " = document." + 
                     formID + ";");
    strScript.Append("v" + formID + ".submit();");
    strScript.Append("</script>");
    //Return the form and the script concatenated.
    //(The order is important, Form then JavaScript)
    return strForm.ToString() + strScript.ToString();
}

Really simple code ... for each key value you want to POST, we create a hidden field, we create the form, we then add the script necessary to make the auto submit by calling vPostForm.submit() from the JavaScript code.

Points of Interest

Why put the generated form and script in a literal control and add that control to the requesting page?! Well ... the idea basically is to have a form which makes an auto submit of the values by itself without triggering it ... we created that form and its script ...now we need to make it run ... we do that by adding that piece of code to a Literal control on which we will display its contents with no tags! Yes ... no tags ... that's the trick ... so the form and script will be displayed in the request. Now, since we are posting back to the same page ... the contents (our form and script) will run successfully. When it runs, the submit process happens and the auto-postback with our data occurs to the destination URL as we have specified :)

If I am asked what the drawbacks of this solution are, I would say maybe one drawback ... which is that if the client is disabling JavaScript on the browser ... then this wouldn't work. I haven't tried that ... but I expect so ... for me, this is a big step and an important solution that helps me a lot to solve a lot of problems :)

I hope I was clear enough in my explanation ... since it requires a deep understanding of the ASP.NET page life cycle and understanding of the postback concepts of a page.

History

  • Created the article, version 1.0.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
Jordan Jordan
Samer is a Computer and Digital Electronics Engineer who lives in Abu Dhabi UAE, worked on a fair number of personal projects as part of fun or freelancing, mostly related to integration between hardware and software (e.g Security Systems, Sensors, Cameras, Bluetooth ... etc), which gave him a powerful knowledge in this area and the ability to invent various complex designs to adhere for external elements effect those systems.

Through his career path he worked on a fair number of enterprise projects with well known software companies, which showed him the various aspects of an enterprise applications.

You may contact Samer through his e-mail: SamerX@outlook.com or Twitter: SamerX as well.

Comments and Discussions

 
Questionthanks Pin
josé Roméro Garcia6-Nov-22 14:48
josé Roméro Garcia6-Nov-22 14:48 
QuestionDoes not work with UpdatePanel Pin
Fabio Rodrigues8-Mar-21 2:40
Fabio Rodrigues8-Mar-21 2:40 
QuestionCan we add the value in the Header Pin
ankit Shri16-Jan-20 10:47
ankit Shri16-Jan-20 10:47 
QuestionCross domain issue Pin
Member 137608413-Apr-18 7:33
Member 137608413-Apr-18 7:33 
Questioncyber security issue with Redirect and post mechanism Pin
Sagar Nagadiya29-Jan-18 19:40
professionalSagar Nagadiya29-Jan-18 19:40 
QuestionThis solution for MVC Pin
Tirisfal29-Jan-18 3:15
Tirisfal29-Jan-18 3:15 
AnswerRe: This solution for MVC Pin
Member 137608413-Apr-18 7:36
Member 137608413-Apr-18 7:36 
QuestionNot working in Safari 5.1.7 Pin
AkhileshKamate21-Nov-17 20:35
AkhileshKamate21-Nov-17 20:35 
QuestionHow to get the response after posting? Pin
saravanakumar_P19-Jul-17 21:03
saravanakumar_P19-Jul-17 21:03 
PraiseReflects In-Depth Research About ASP Page Life Cycle Pin
Vincent Saelzler16-May-17 10:36
Vincent Saelzler16-May-17 10:36 
QuestionFantastic! Pin
GustavoAdolfoAS9-Sep-16 12:28
GustavoAdolfoAS9-Sep-16 12:28 
QuestionIt works for me. Pin
Member 124357994-Apr-16 5:55
Member 124357994-Apr-16 5:55 
QuestionIts not working when the calling button is within the update panel Pin
Member 1133255310-May-15 22:45
Member 1133255310-May-15 22:45 
AnswerRe: Its not working when the calling button is within the update panel Pin
Member 1133255310-May-15 23:15
Member 1133255310-May-15 23:15 
QuestionGetting error when running Pin
DAF76-Mar-15 7:37
DAF76-Mar-15 7:37 
QuestionPraise God and THANK YOU for this posting solution!! Pin
jajohnston15-Jan-15 7:37
jajohnston15-Jan-15 7:37 
AnswerRe: Praise God and THANK YOU for this posting solution!! Pin
Samer Aburabie15-Jan-15 8:55
Samer Aburabie15-Jan-15 8:55 
QuestionRedirect to new tab Pin
Member 1096855712-Dec-14 10:03
Member 1096855712-Dec-14 10:03 
AnswerRe: Redirect to new tab Pin
DAF76-Mar-15 7:32
DAF76-Mar-15 7:32 
QuestionFantastic Pin
Jo-Anne8-Dec-14 19:43
Jo-Anne8-Dec-14 19:43 
QuestionHow to get the information returned from HTML form ? Pin
Member 1065989724-Nov-14 23:33
Member 1065989724-Nov-14 23:33 
GeneralThanks and Good work! Keep it up! Pin
Member 77957107-Nov-14 21:58
Member 77957107-Nov-14 21:58 
GeneralRe: Thanks and Good work! Keep it up! Pin
Samer Aburabie10-Nov-14 16:24
Samer Aburabie10-Nov-14 16:24 
Questionplease share your code Pin
santosh22527-Nov-14 11:20
professionalsantosh22527-Nov-14 11:20 
AnswerRe: please share your code Pin
Garth J Lancaster7-Nov-14 11:33
professionalGarth J Lancaster7-Nov-14 11:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.