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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T23:27:26+00:00 2026-06-12T23:27:26+00:00

C# code. I have populated checkboxes, but not radiobuttons before. Here is a sample

  • 0

C# code. I have populated checkboxes, but not radiobuttons before.
Here is a sample page:

<asp:Content ID="Content" runat="server" ClientIDMode="Static">
    <asp:UpdatePanel ID="category" runat="server">
        <ContentTemplate>
            <div>
                <span>Data:</span>
                <asp:TextBox ID="txBox" runat="server" TextMode="MultiLine">
                </asp:TextBox>
            </div> 
            <!-- Need to add this to populate from dataset, and save to database table -->     
            <asp:RadioButtonList ID ="radioButtonList" runat="server" AutoPostBack="true"
                OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged"  >
                <asp:ListItem ID="isEnabledTrue">Yes</asp:ListItem>
                <asp:ListItem ID ="isEnabledFalse" Selected="True">No</asp:ListItem>           
            </asp:RadioButtonList>    
        </ContentTemplate>
    </asp:UpdatePanel>
</asp:Content>

How do I populate the radioButtonList in the same way.
The table/dataset returned comes as
Name : NVARCHAR(25)
isEnabled: 1/0 – BIT

How do I attach the ‘isEnabled’ dataset to the radioButtonList control. I also need to monitor changes to the radioButtonlist control and save to database.

So, I have two methods associated with the control that need to:
Populate values from database: TextBox and RadioButtonList from the DataSet
Save values to database: TextBox and RadioButton selected, to be saved to table.

My alternate approach if this cannot work, is to get XML from database, then construct an XSLt from this XML structure. I can add events that make the database call via AJAX, to save the updated radiobutton/textbox if needed. I would need additional code to ensure the javascript methods work too. Just wanted to test the dataset approach before going the XML way..

My aspx.cs code-behind does this.

protected void Page_Load(object sender, EventArgs e)
{
    Populate();
}

private void Populate()
{
    DataSet dataSet = CustomCode.GetDataSet(somethingPassedIn);
    DataRow row = dataSet .Tables["Table1"].Rows[0];
    txBox.Text = row["Name"].ToString();
    //How to populate RadioButtonList with Yes/No checked appropriately? 
    //A bit column of 1/0 is returned per what needs to be checked 
    //(1=> Yes should be selected, 0=>No should be selected) 
}

protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
{
    SaveData(); 
}
private void SaveData()
{
    CustomCode.SaveData(txBox.Text.Trim(), radioButtonList?);       
}
  • 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-12T23:27:27+00:00Added an answer on June 12, 2026 at 11:27 pm

    Binding:

    if((bool)row["IsEnabled"])
    {
        radioButtonList.SelectedValue = "Yes";
    }
    else
    {
        radioButtonList.SelectedValue = "No";
    }
    

    Saving:

    bool isEnabled;
    if(radioButtonList.SelectedValue = "Yes")
    {
        isEnabled = true;
    }
    CustomCode.SaveData(txBox.Text.Trim(), isEnabled);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have here a code wherein I have an array of checkbox populated with
I have a drop down list that is populated with data in the code
I have the following code to populate an array of strings, but every time
I have code that generates a List<string[]> variable but can't quite figure out how
I have code that looks more or less like the code below but it
I have the code for cloning elements but how to auto populate the second
Using CakePHP 1.3.6 I'm sure I may have to add code and examples, but
I have an asp.net web page with a form that contains a series of
I have code like function populate...() { var user = $.storage.get(particulars); if (user) {
I have some code which populates a hashtable with a question as the key

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.