Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6981829
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:12:29+00:00 2026-05-27T18:12:29+00:00

I need to allow a user to redirect from a page that collects user

  • 0

I need to allow a user to redirect from a page that collects user input. Should the user redirect, upon return to the page the form should be filled in with the values that the user had already entered.

I completed the following but I’m guessing there is a better way to do this.

On RedirectEvent()
{
    Dictionary<string, string> form = new Dictionary<string, string>();
    foreach (string key in Request.Form.AllKeys)
    {
        if (key != null)
        form.Add(key, Request.Form[key]);
    }
    Session["requestFormKeys"] = form;

    Response.Redirect(url);
}


On Page_Load(object sender, EventArgs e)
{
    if (Session["requestFormKeys"] != null)
    {
        Dictionary<string, string> form = Session["requestFormKeys"] as   Dictionary<string, string>;
        // I tried using 'Request.Form.AllKeys' here but it was always null
        foreach (KeyValuePair<string, string>pair in form)
        {
            // cannot use a switch because switch requires a constant (value must be known at compile time)
            if (pair.Key.Contains("txtName"))
                    txtName.Text = lblNameView.Text = pair.Value;
            else if (pair.Key.Contains("ddlType"))
                    ddlType.SelectedValue = pair.Value;
            else if (pair.Key.Contains("ddlPriority"))
                    ddlPriority.SelectedValue = pair.Value;
                              .
                              .
                              .         
            //this is a tedious process and should be streamlined
                              .
                              .
                              .
            else if (pair.Key.Contains("txtDateStart"))
                    txtDateStart.Text = pair.Value;
            else if (pair.Key.Contains("txtDateEnd"))
                    txtDateEnd.Text = pair.Value;

        }
   }
   Session.Remove("requestFormKeys");
  }
}

Any help would be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T18:12:30+00:00Added an answer on May 27, 2026 at 6:12 pm

    Assuming a database is out of the question because we are dealing with an anonymous user – putting the dictionary in the Session could be a little heavy on server resources – unless you run a separate stateserver or sqlserver for the session.

    Persisting the values in a client side cookie collection would work for an anonymous user – though increase bytes over the wire.

    Response.Cookies["mypage"]["textbox1"] = textbox1.Text;
    Response.Cookies["mypage"]["textbox2"] = textbox2.Text;
    

    Remember to HTML encode the cookie in case the cookie has been hacked with client-side script on the way back

    if (Request.Cookies["mypage"] != null)
    textbox1.Text = Server.HtmlEncode(Request.Cookies["mypage"]["textbox1"].Value);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a dropdown list on my page that will allow a user to
I have a need to allow for a user to download an event that
I'm working on a web application that need to allow the user to drag
Through the website, I need to allow the user to add attachments and store
Is there a winforms month-only picker control? I need to allow the user to
I need to allow full-text searching on two fields that are concatenated together. In
I need to allow users to upload PDF documents that other users will read.
I'm working on the code below to allow HTTP user agents that cannot perform
I have a form that allows a user to update their profile information, but
I need to change $config['uri_protocol'] from AUTO to PATH_INFO (to allow url parameters) My

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.