A user control is on the page
>From the user control, I need access to the drop down value. I can getto it like this
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?