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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T22:02:18+00:00 2026-06-10T22:02:18+00:00

I have a drop down box that populates textbox values based on its value.

  • 0

I have a drop down box that populates textbox values based on its value. It fires when it is changed but on pageload it doesnt fire. How do I get it to fire on page load?

   protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {     
   TextBox3.Text = DropDownList1.SelectedValue;
        TextBox12.Text = DropDownList1.SelectedValue;
        TextBox21.Text = DropDownList1.SelectedValue;

     //etc
  • 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-10T22:02:20+00:00Added an answer on June 10, 2026 at 10:02 pm

    Tim Schmelter’s comment is right on the money.

    // Wire up to the page load event
    protected void Page_Load(object sender, System.EventArgs e)
    {
       updateTextBoxes();
    }
    
    // Wire up to the select index-changed event
    protected void DropDownList1_SelectIndexChanged( object sender, EventArgs e )
    {
        updateTextBoxes();
    }
    
    
    // your workhorse method
    protected void updateTextBoxes()
    {
       TextBox3.Text  = DropDownList1.SelectedValue;
       TextBox12.Text = DropDownList1.SelectedValue;
       TextBox21.Text = DropDownList1.SelectedValue;
    
       // etc.
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to have a drop down box that has a list of different
I have a drop down box and some text input fields below it. Based
When I have simple drop down box <select id=fruits> <option value=apple>Apple</option> <option value=orange>Orange</option> <option
I have a form drop down box (for the 50 states) that is populated
I have a drop down that filters a multi-select box that then the user
I have a Drop down box Based on the selection i should populate the
I have a drop down box that contains a list of names and a
I have a drop down box for each row inside a table <table> <tr>
I have a drop down list box like following. Under some condition, in the
I have a dynamic drop down box which calls another PHP page. I've got

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.