Ok, thank you...
I tried to paste all of it, but I got an error saying the post could only
take so much.
So here are two sections
The section that has the dropdown list - "cmbPCP" is as follows
<td style="font-weight: bold; font-size: x-small; width: 67px; color: black;
font-family: 'Century Gothic'; height: 10px;">
PCP Name:</td>
<td style="width: 90px; height: 10px;">
<asp

ropDownList ID="cmbPCP" runat="server"
AutoPostBack="True"
DataTextField="ProvName"
DataValueField="ProvID" Style="font-weight: bold; font-size: x-small;
color: black; font-family: 'Century Gothic'"
Width="234px">
</asp

ropDownList></td>
</tr>
<tr>
<td colspan="2" rowspan="2" style="height: 66px">
<asp

etailsView ID="dvProvider" runat="server"
AutoGenerateRows="False" DataSourceID="sdsPCPPanel"
Height="7px" Style="font-weight: normal;
font-size: x-small; color: black; font-family: 'Century Gothic'"
Width="319px" GridLines="None">
<Fields>
<asp:BoundField DataField="RPTPeriod"
HeaderText="Report Period:"
ReadOnly="True"
SortExpression="RPTPeriod" />
<asp:BoundField DataField="ProvID"
HeaderText="PCP Number:" SortExpression="ProvID" />
<asp:BoundField DataField="LocName"
HeaderText="Primary Location:" SortExpression="LocName" />
<asp:BoundField DataField="Specialty"
HeaderText="Department Specialty:" SortExpression="Specialty" />
</Fields>
</asp

etailsView>
'=====================================================
Then there are 8 panels just like this one
<asp

anel ID="pnlHCC" runat="server" CssClass="modalPopup" Style="display:
none" Height="323px"
Width="685px">
<table style="width: 697px; height: 138px">
<tr>
<td style="width: 100px; height: 5px" valign="top">
<asp:Button ID="btnClose_HCC" runat="server"
Text="Close" />
</td>
</tr>
<tr>
<td style="width: 100px; height: 280px" valign="top">
<asp:UpdatePanel ID="upHCC" runat="server">
<ContentTemplate>
<asp:GridView ID="gvHCC" runat="server"
AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" BackColor="White"
BorderColor="#E7E7FF" BorderStyle="None"
BorderWidth="1px" CellPadding="3"
DataSourceID="odsHCC" EmptyDataText="No 'HCC Left to refresh' Data Exists for
this Provider"
GridLines="Horizontal" Width="678px">
<FooterStyle BackColor="#B5C7DE"
ForeColor="#4A3C8C" />
<RowStyle BackColor="#E7E7FF"
ForeColor="#4A3C8C" />
<Columns>
<asp:BoundField DataField="PT_MRN"
HeaderText="PT_MRN" SortExpression="PT_MRN" />
<asp:BoundField DataField="PT_NAME"
HeaderText="PT_NAME" SortExpression="PT_NAME" />
<asp:BoundField DataField="HCC Left To
Refresh" HeaderText="HCC Left To Refresh"
SortExpression="HCC Left To Refresh"
/>
<asp:BoundField DataField="HCC
Description" HeaderText="HCC Description" SortExpression="HCC Description" />
</Columns>
<PagerStyle BackColor="#E7E7FF"
ForeColor="#4A3C8C" HorizontalAlign="Right" />
<SelectedRowStyle BackColor="#738A9C"
Font-Bold="True" ForeColor="#F7F7F7" />
<HeaderStyle BackColor="#4A3C8C"
Font-Bold="True" ForeColor="#F7F7F7" />
<AlternatingRowStyle BackColor="#F7F7F7" />
</asp:GridView>
<asp:ObjectDataSource ID="odsHCC" runat="server"
OldValuesParameterFormatString="original_{0}"
SelectMethod="PercentRefresh"
TypeName="dsListsTableAdapters.tbl_lst_HCCTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="cmbPCP"
Name="ProvID" PropertyName="SelectedValue"
Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
</ContentTemplate>
</asp:UpdatePanel>
</td>
</tr>
</table>
<br />
</asp

anel>
<ajaxToolkit:ModalPopupExtender ID="mpeHCC" runat="server"
CancelControlID="btnClose_HCC"
PopupControlID="pnlHCC" TargetControlID="lnkHCC">
</ajaxToolkit:ModalPopupExtender>
This panel was the last one I did, so I'm figuring there maybe something
here. Although I don't see anything.