Intento colocar <a href='..... a> en un dropdownlist pero no me lo genera como html, se puede hacer esto?
Gracias.
| ||||
Re: href en dropdownlist Ke es lo ke intentas, ke al seleccionar algun item de tu Drop se redirija a alguna pagina X?
__________________ [email protected] |
| ||||
Re: href en dropdownlist Ok me agrada tu idea, ke te parece si nos komplikamos un poko kon JavaScript. Escribimoos la sig funcion JS:
Código:
Y tu DropDown la invocaria asi:<script type="text/javascript" language="javascript" > function Go(obj) { location.href=obj.value; } </script>
Código:
Espero sea de tu agrado, funciona sin PostBack y pues, muy buena pregunta. <asp:DropDownList onChange="Go(this);" ID="DropDownList1" runat="server" Height="27px" Style="z-index: 103; left: 562px; position: absolute; top: 183px" Width="166px"> <asp:ListItem Value="page1.aspx">Pagina 1</asp:ListItem> <asp:ListItem Value="page2.aspx">Pagina 2</asp:ListItem> <asp:ListItem Value="page3.aspx">Pagina 3</asp:ListItem> </asp:DropDownList>
__________________ [email protected] |