Redireccionar a una pagina al seleccionar elemento

17/06/2004 - 17:30 por Fausto | Informe spam
Saludos, el proble es k tengo un DropDownlist en una web
con varios elementos a seleccionar y kiero k al
seleccionar un elemento de dicho control se direccione a
una pagina
Gracias de antemano..-...
 

Leer las respuestas

#1 Franco Figún
17/06/2004 - 18:47 | Informe spam
Este ejemplo te puede ayudar:

<script language="VB" runat="server">
Sub Page_Load
If Not Page.IsPostBack Then

Dim URLs = New SortedList()
URLs.Add("Google", "http://www.google.com")
URLs.Add("MSN", "http://search.msn.com")
URLs.Add("Yahoo", "http://www.yahoo.com")
URLs.Add("Lycos", "http://www.lycos.com")
URLs.Add("AltaVista", "http://www.altavista.com")
URLs.Add("Excite", "http://www.excite.com")

RadioButtons.DataSource = URLs
RadioButtons.DataTextField = "Key"
RadioButtons.DataValueField = "Value"
RadioButtons.DataBind()

CheckBoxes.DataSource = URLs
CheckBoxes.DataTextField = "Key"
CheckBoxes.DataValueField = "Value"
CheckBoxes.DataBind()

DropDownList.DataSource = URLs
DropDownList.DataTextField = "Key"
DropDownList.DataValueField = "Value"
DropDownList.DataBind()

ListBox.DataSource = URLs
ListBox.DataTextField = "Key"
ListBox.DataValueField = "Value"
ListBox.DataBind()

End If

End Sub

Sub GetRadioButtonURL(Src as Object, Args As EventArgs)
Response.Redirect(RadioButtons.SelectedItem.Value)
End Sub

Sub GetCheckBoxURL(Src as Object, Args As EventArgs)
Response.Redirect(CheckBoxes.SelectedItem.Value)
End Sub

Sub GetDropDownListURL(Src as Object, Args As EventArgs)
Response.Redirect(DropDownList.SelectedItem.Value)
End Sub

Sub GetListBoxURL(Src as Object, Args As EventArgs)
Response.Redirect(ListBox.SelectedItem.Value)
End Sub
</SCRIPT>

<html><body>
<form runat="server">
<asp:RadioButtonList id="RadioButtons" runat="server"/>
<asp:Button Text="Go to Site" OnClick="GetRadioButtonURL" runat="server"/>

<asp:CheckBoxList id="CheckBoxes" runat="server"/>
<asp:Button Text="Go to Site" OnClick="GetCheckBoxURL" runat="server"/>

<asp:DropDownList id="DropDownList" runat="server"/>
<asp:Button Text="Go to Site" OnClick="GetDropDownListURL" runat="server"/>

<asp:ListBox id="ListBox" runat="server"/>
<asp:Button Text="Go to Site" OnClick="GetListBoxURL" runat="server"/>
</form>
</body></html>


FF
www.francofigun.com.ar
www.microsofties.com.ar
MSN:
UIN: 314408886
Yahoo MSN:
"Fausto" wrote in message
news:1e0a401c4547f$f45cd1c0$
Saludos, el proble es k tengo un DropDownlist en una web
con varios elementos a seleccionar y kiero k al
seleccionar un elemento de dicho control se direccione a
una pagina
Gracias de antemano..-...

Preguntas similares