Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP 2.0 DropDownList_TextChanged event doesn't fire

Status
Not open for further replies.

joggi

Programmer
Nov 8, 2006
44
YU
I have on my web form one dropdownlist which data source is datatable.

dt = New DataTable
dt = .....

dropdownlist.DataSource = dt
dropdownlist.DataBind()

When I click on dropdown I have 3 values John, Tom, Mike.
When user change the text TextChanged and SelectedIndexChanged events don't fire.

How to get event when user change the text? Is it bug or what?

Thank you
 
It's very unlikely that it is a bug in the framework or in ASP.NET - the problem is probably that you haven't told the control to AutoPostBack to the server.


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top