I am using a tab container with 3 tabs to display MS Sql 2008 R2 - DB data in different states.
I added a DropDownList box inside of a Tab Panel to select a condition for my SQLDataSource to filter the query against.
It returns the following error in debug mode...
Could not find control 'DropDownList1' in ControlParameter
I am trying to avoid any code behind programming at this point. Is there a way to use the FindControl function with inline code?
<SelectParameters>
<asp:ControlParameter ControlID="DropDownList1" Name="deviceID"
PropertyName="SelectedValue" Type="Int32" />
</SelectParameters>
Not sure if this will solve my problem.
thanks for any help.