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

  • SEARCH
  • Home
  • 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 6678887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:17:42+00:00 2026-05-26T04:17:42+00:00

I am trying to assign a ViewState value in my application with a SelectedIndexChanged

  • 0

I am trying to assign a ViewState value in my application with a SelectedIndexChanged function. Once it’s assigned the postback will use the value to change some data and then set the value to zero but I can’t seem to get it to work correctly. The controls are all created dynamically on Page_Load.

Page Load

protected void Page_Load(object sender, EventArgs e)
{
    CreateAttributeControls();
    TempProductVariantId = 0;
}

Create Attribute Controls

public void CreateAttributeControls()
{
    ...
    var ddlArtistArtworks = new DropDownList();
    ddlArtistArtworks.ID = "ddlArtistArtworksTest";
    divAttribute.Controls.Add(ddlArtistArtworks);
    ddlArtistArtworks.Items.Clear();
    ddlArtistArtworks.SelectedIndexChanged += new EventHandler(ArtistArtwork_SelectedIndexChange);
    ddlArtistArtworks.AutoPostBack = true;
    ...
}

ArtistArtwork_SelectedIndexChange

protected void ArtistArtwork_SelectedIndexChange(object sender, EventArgs e)
{
    DropDownList ddl = sender as DropDownList;
    TempProductVariantId = int.Parse(ddl.SelectedValue);
}

TempProductVariantId ViewState Save

public int TempProductVariantId
{
    get
    {
        if (ViewState["TempProductVariantId"] == null)
            return 0;
        else
            return (int)ViewState["TempProductVariantId"];
    }
    set
    {
        ViewState["TempProductVariantId"] = value;
    }
}

When I load the page everything is fine. I change the DropDownList’s value, It posts back, and the value is not set. Change it again the value is set and continues to change as I change the value of the DropDownList.

Any guidance on this would be greatly appreciated.

Note: I have tried changing when CreateAttributeControls() is called. In OnPreRender for example. I was given this to understand the lifecycle of the page Life Cycle

  • 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-26T04:17:43+00:00Added an answer on May 26, 2026 at 4:17 am

    That’s because you are essentially recreating the dropdown on every postback..

    try this

    public void CreateAttributeControls()
    {
        ...
        DropDownList ddlArtistArtworks;
        if (!IsPostBack)
        {
            ddlArtistArtworks = new DropDownList();
            ddlArtistArtworks.ID = "ddlArtistArtworksTest";
            divAttribute.Controls.Add(ddlArtistArtworks);
            ddlArtistArtworks.Items.Clear();
            ddlArtistArtworks.AutoPostBack = true;
        }
        else
        {
             ddlArtistArtworks = (DropDownLise)divAttribute.FindControl("ddlArtistArtworksTest");
        }
    
        ddlArtistArtworks.SelectedIndexChanged += new EventHandler(ArtistArtwork_SelectedIndexChange);
        ...
    }
    

    For dynamically added controls, the event handler has to be linked up everytime so that has to be done outside the if-block, unconditionally.

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

Sidebar

Related Questions

I have an asp.net mvc application and i am trying to assign value to
I'm trying to assign some JSON data to a property of a JS.Class instance.
I am trying to assign an function within an function object property without actually
I'm trying to assign the following HTML as a value to variable type string
Good Afternoon, I am trying to assign some variables to a listing which has
I am trying to assign some javascript variables in a Django template. I am
I'm trying to assign a function to Object.prototype.equals similar to what's done in Object
I am trying to assign a value in jQuery to an input field with
I am trying to assign data from a struct to a std::vector Here is
I'm trying to assign a method (function) to an ExpandoObject with this signature: public

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.