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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:17:38+00:00 2026-06-17T05:17:38+00:00

I have a button that creates a CheckBoxList . The items in the CheckBoxList

  • 0

I have a button that creates a CheckBoxList. The items in the CheckBoxList are selected based on a user’s current notification subscriptions. I’m storing the true or false value of the selected item.

After the users change their subscriptions by checking or unchecking a box in the CheckBoxList, they click another button to update their notification subscriptions. I need to compare the Viewstate["PREV"] with the changed selections on postback and run some functions based on the changes.

ArrayList list = new ArrayList();
for (int i = 0; i < checkBoxList1.Items.Count; i++)
{
    list.Add(checkBoxList1.Items[i].Selected.ToString());
}
ViewState["PREV"] = list;

Even though I can’t see the values with a Response.Write, the values for the ViewState are correct when I add a watch in debug.

The problem I’m having is how to approach the next step to do the comparison. This is what I want to accomplish:

            for (int i = 0; i < checkBoxList1.Items.Count; i++)
        {
            //if checkbox state goes from false to true, subscribe to topic
               //mySubscribeMethod
            //else if checkbox state goes from true to false, unsubscribe to topic
               //myUnsubscribeMethod
            //else if checkbox state is unchanged, do nothing
        }
  • 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-06-17T05:17:39+00:00Added an answer on June 17, 2026 at 5:17 am

    You can try something like this

    ArrayList list =  ViewState["PREV"] as ArrayList;
    for (int i = 0; i < checkBoxList1.Items.Count; i++)
    {
         if (checkBoxList1.Items[i].Selected == true && Convert.ToBoolean(list[i]) == false)
           {
               // Subscribe Method
           }   
         if (checkBoxList1.Items[i].Selected == false && Convert.ToBoolean(list[i]) == true)       
           {
               // Unsubscribe Method
           }
         else
           {
               // Continue to loop
           } 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a button that creates a UIImageView and allows the user to select
I have event Button that creates text box in run time. Private Sub Button1_Click(ByVal
I have some code that dynamically creates a new button through JavaScript that when
I have a Delphi program that creates HTML files. Later when a button is
In Java, I have an object that creates a button. Inside that button's onclicklistener
I have a home activity ActivityA, which has button that creates an intent, sets
I have created an Excel file from my JTable. The same button that creates
Say I have a menu button called 'Create window' that creates a new window:
I have a SWING UI that contains a button that creates a new SwingWorker
I have a dynamic CheckBoxList that creates an HTML table. I've listed one row

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.