Posted 11 Oct 2012 Link to this post
Posted 12 Oct 2012 Link to this post
Protected
Sub
ddl_SelectedIndexChanged(sender
As
Object
, e
EventArgs)
Dim
ddl
DropDownList =
DirectCast
(sender, DropDownList)
item
GridEditableItem =
(ddl.NamingContainer, GridEditableItem)
txt
TextBox =
(item.FindControl(
"TextBox2"
), TextBox)
txt.Text = ddl.SelectedValue.ToString()
End
Posted 26 May 2016 Link to this post