onblur and onfocus attributes for textbox created progrmatically in vb.net
- by ferrer
how do i put the onblur and onfocus attributes on a textbox created programatically?
here's my code -
td = New HtmlTableCell
td.Style.Add("padding-bottom", "5px")
Dim txtbox As New TextBox
txtbox.Style.Add("width", "96%")
txtbox.ID = "ename"
td.Controls.Add(txtbox)
…