L
Larry Bud
Main page has a FormView, and within that, is a drop down.
A user control is on the page
Dim cc As FormView, dd As DropDownList
cc = Parent.FindControl("FormView1")
dd = cc.FindControl("currency_code")
exchange_rate.Text = dd.SelectedValue
Is there a more direct route?
A user control is on the page
to it like thisFrom the user control, I need access to the drop down value. I can get
Dim cc As FormView, dd As DropDownList
cc = Parent.FindControl("FormView1")
dd = cc.FindControl("currency_code")
exchange_rate.Text = dd.SelectedValue
Is there a more direct route?