Dear all,
before using AJAX.Net, when I wanted to find control in form,
I used this code
Dim SQL As String = "SELECT CurrencyID, CurrencyID FROM MasterCurrency ORDER BY CurrencyID"
Dim ctl As Object
For Each ctl In Me.FindControl("form1").Controls
If LCase(Left(ctl.id, 6)) = "cmbccy" Then FillControl(ctl, SQL)
Next
now, after I'm implementing AJAX.Net, ASP.Net couldn't find all controls inside UpdatePanel.
ASP.Net only finds UpdatePanel control
Does any one know how to find controls inside UpdatePanel?
Thanks