Results 1 to 7 of 7

Thread: Event on Dropdown Select

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2002
    Location
    Hendersonville , NC
    Posts
    260

    Event on Dropdown Select

    On an ASPX .. I am using a dropdown combo box. In this box I have of course added items. How can I TRIGGER an event (back on the server) to process the selected item and fill some additional items on the active page?

    gollnick
    William E Gollnick

  2. #2
    Fanatic Member venerable bede's Avatar
    Join Date
    Sep 2002
    Location
    The mystic land of Geordies
    Posts
    1,018

    Re: Event on Dropdown Select

    The SelectedIndexChanged event will fire when something is chosen from the combo.

    private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
    string myString;
    myString = comboBox1.SelectedItem.Value;
    }

    Parksie

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2002
    Location
    Hendersonville , NC
    Posts
    260

    Re: Event on Dropdown Select

    It does, yes .. but not automatically. I want the trip back to the serverside to be immediate and automatic... As soon as they leave the combo...

    gollnick
    William E Gollnick

  4. #4
    Fanatic Member venerable bede's Avatar
    Join Date
    Sep 2002
    Location
    The mystic land of Geordies
    Posts
    1,018

    Re: Event on Dropdown Select

    If you're autopostback property is set to true then surely it will automatically post.

    Parksie

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2002
    Location
    Hendersonville , NC
    Posts
    260

    Re: Event on Dropdown Select

    Man .. do I feel dumb .... thanks.....

    gollnick
    William E Gollnick

  6. #6

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2002
    Location
    Hendersonville , NC
    Posts
    260

    Resolved: Event on Dropdown Select

    Thanks
    William E Gollnick

  7. #7
    Fanatic Member venerable bede's Avatar
    Join Date
    Sep 2002
    Location
    The mystic land of Geordies
    Posts
    1,018

    Re: Event on Dropdown Select

    No probs.
    I used to make that mistake all the time. Drove me nuts.

    Parksie

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width