C# - Dropdown LIst

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi ,

I use C# to create a dropdown list in the web page and I place some code
in the SelectedIndexChanged event. But when I click on the list to select
certain job to perfom , there is not respoand at all ... what else should I
set ?

Travis Tan
 
HI,

on web page dropdown combo box's SelectedIndexChanged event will not fire
automatically. You need to set the AutoPostBack property to true to fire
this event.

Vinu
 
Back
Top