Reputation: 8659
Is it possible to handle dropdownlist SelectedIndexChanged
event with AutoPostBack property = false?
Upvotes: 0
Views: 1546
Reputation: 63956
Yes, it is possible, just add the handler for selected index changed and it will be called back when the form is posted again.
Upvotes: 0
Reputation: 52241
You can achieve it using JavaScript. e.g.
<script language="javascript" type="text/javascript">
function doPostBack() {
setTimeout("__doPostBack('yourControlClientID','')", 0);
}
</script>
Upvotes: 1