is it possible to access the CouncilIdLabel via DropDownList_SelectedIndexChanged event?!
<tr id="Tr10" runat="server">
<td width="110px">
دسته :
</td>
<td>
<asp:DropDownList ID="CategoryDropDownList" runat="server" Font-Names="tahoma" Font-Size="13px" onselectedindexchanged="CategoryDropDownList_SelectedIndexChanged" AutoPostBack="true" SelectedValue='<%# Eval("Category") %>'>
<asp:ListItem Text="عمومی" Value="عمومی"></asp:ListItem>
<asp:ListItem Text="پزشکی" Value="پزشکی"></asp:ListItem>
<asp:ListItem Text="مددکاری" Value="مددکاری"></asp:ListItem>
<asp:ListItem Text="روان شناسی" Value="روان شناسی"></asp:ListItem>
</asp:DropDownList>
<asp:Label ID="CouncilIdLabel" runat="server" Text='<%# Eval("CouncilId") %>' Visible="false" />
</td>
</tr>
it is located in a listview ItemTemplate
please help me, i need to solve this problem really soon