I am working with ASP.NET
I have a DropDownList item and in there i have hyperlinks as values. What event must i use in my code behind to redirect the user to that URL when he selects the "eRate" item?
My code
<asp:DropDownList ID="dropSelect" runat="server" Width="126px">
<asp:ListItem>Please select</asp:ListItem>
<asp:ListItem Value="http://www.erate.co.za">eRate</asp:ListItem>
</asp:DropDownList>
thanks in advanced!!