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 6965909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:07:22+00:00 2026-05-27T16:07:22+00:00

I have an ASP.NET gridview component which is being filled up with data from

  • 0

I have an ASP.NET gridview component which is being filled up with data from a database. I have also added a template field in the gridview which contains a DropDownList component. I have also created a separate button (not a gridview field). When this button is clicked, the program goes through all the GridView rows and checks the DropDownList of each row and when a DropDownList with a selected value other than 0 is found, it puts the details of that particular row in a session to be sent to another page. The code is as follows:

protected void CheckoutButton_Click(object sender, EventArgs e)
{
    int n = 0;

    foreach (GridViewRow row in GridView1.Rows)
    {
        if (((DropDownList)row.FindControl("DropDownList1")).SelectedItem.Value == "0")
        {
        }
        else
        {
            n++;
            Session["ProductList" + n] = row.Cells[0].Text;
            Session["QuantityList" + n] = row.Cells[5].Text;
            Session["NumberofResults" + n] = n;
        }
    }
}

The problem I am having is that when the ‘Checkout’ button is clicked, the value being read from the DropDownList is not the value that the user has selected, but its default value. Basically the value of the dropdownlist is being changed back to the default before the code in the CheckoutButton_Click method is executed.

Any ideas please?

  • 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-27T16:07:22+00:00Added an answer on May 27, 2026 at 4:07 pm

    You need to wrap you code in the Page_Load event with if(!IsPostBack) to make sure the value selected is retained.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a traditional ASP.NET GridView. Inside of it I have a Template Field
I have an ASP.NET 3.5 GridView on a WebForm. The GridView gets data from
I have an extended GridView class, GridViewEx, which inherits from the basic ASP.NET gridview.
I have an ASP.NET GridView which has columns that look like this: | Foo
I have an ASP.NET GridView with a DropDownList (in an Item Template) and a
I have a ASP.NET GridView that uses template columns and user controls to allow
I have a delete button in each row of GridView (component ASP.NET). I want
I have an ASP.NET application inside which i have a GridView.I have Skin file
I have an ASP.net GridView that spits out three columns of data: ( OrderNumber,
I have an ASP.NET GridView that's bound to an ObjectDataSource (which is bound to

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.