hi Friends
i am creating master-page , in that one drop-down is there and auto-post-back = true.
when i am selecting the drop-down list item . the page is refresh and redirect that particular page . now the problem is after redirecting the page , the drop-down list is cleared. so what should i do now the drop-down is not clear the value.
i am trying like this, when i am selecting the drop-down i stored the value in Session but how to assign the session value in master page drop-down list in other pages.
this master page dropdown list :
<asp:DropDownList ID="DropDownList1" runat="server" Width="280px"
AutoPostBack="True"
onselectedindexchanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem>--Select--</asp:ListItem>
<asp:ListItem Value ="HomePage.aspx">EmployeeModule</asp:ListItem>
<asp:ListItem Value="JobCard.aspx">JobCard</asp:ListItem>
<asp:ListItem Value="LocationStracture.aspx">Location Setup</asp:ListItem>
</asp:DropDownList>
thanks and regards
surya