Hi,
I have a link wich passes the values selected from 3 dropdownlist boxes to another page by response.redirect.
(I am using asp.net,
vb in dreamwaver)
There is anoter button in the page that is gonne be triggered by pressing Enter key so I don't want to use a buttton for these boxes, can anyone help me with this Please?
Here is a sample of what I have done:
<asp:DropDownList ID="oSkill" DataTextField="SkillType" runat="server" />
<asp:DropDownList ID="oLocation" DataTextField="City" runat="server" />
<asp:DropDownList ID="oJobType" DataTextField="JobType" runat="server" />
<A HREF???????????I don't know how to pass response.redirect to <a> tag or any other option?
here is the response.redirect:
Response.Redirect("result.aspx?oLocation=" & oLocation.SelectedItem.Text & _
"&oSkill=" & oSkill.SelectedItem.Text & _
"&oJobType=" & oJobType.SelectedItem.Text)
Many Thanks