In my code behind, I have the handler for the dropdownlist
Private Sub cbo_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cbo.SelectedIndexChanged
textBox1.text = cbo.selectedvalue
End Sub
But the drop down do not fire the handler when it is change. When I remove the telerik radajaxmanager, it will fire. Any one have idea why this will happen. Please help.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
该处理程序可能已被触发,但要在文本框中设置文本,您必须将其 ID (textBox1) 添加到 ajax 管理器设置的 UpdatedControls 集合中。
The handler is probably fired, but to set text in the textbox you have to add its ID (textBox1) in the UpdatedControls collection of the ajax manager setting.