Regards, Sheo Narayan http://www.dotnetfunda.com
Thanks Pavan Kumar Mark Answer if this fits the need
<script runat="server"> private void HtmlColorDropDown1_ColorChanged(object sender, System.EventArgs e) { Label1.Text = HtmlColorDropDown1.SelectedColorName; } </script> <html> <head> <title>Example</title> </head> <body> <form runat="server"> <cc1:HtmlColorDropDown id="HtmlColorDropDown1" runat="server" DisplaySelectColorItemText="--Select a Color--" DisplaySelectColorItem="True" AutoPostBack="True" OnColorChanged="HtmlColorDropDown1_ColorChanged"> </cc1:HtmlColorDropDown> <P>The selected color is: <asp:Label id="Label1" runat="server"/></P> </form> </body> </html>
NaveenKumar
Login to post response