如何从dropdownList URL aspx

时间:2017-04-01 23:24:01

标签: asp.net vb.net

我的aspx页面中有一个popupButton(自定义组件)。 (Car.aspx)

此按钮具有调用新视图的URL。 (Color.aspx)

我想从Car.aspx页面的下拉列表中将所选值作为URL参数传递

我尝试了以下代码,但它没有在请求中发送选定的值,而是文本<%:ddlCodMercado.SelectedValue%>

Cars.aspx

<asp:DropDownList id="ddlCodMercado" style="Z-INDEX: 111; LEFT: 10px; POSITION: absolute; TOP: 50px" runat="server" Width="130px" accessKey="R" CssClass="campo" tabIndex="2">
    <asp:ListItem Value="3433">3433</asp:ListItem>
    <asp:ListItem Value="3431">3431</asp:ListItem>
</asp:DropDownList>
<gvs:popupbutton id="pubConcessionaria" style="Z-INDEX: 109; LEFT: 400px; POSITION: absolute; TOP: 50px"
     tabIndex="2" runat="server"  ImageUrl="../img/img_lupa.gif" URL="../Pop-ups/Color_pop.aspx?codMercado=<%:ddlCodMercado.SelectedValue%>"></gvs:popupbutton>

如何从dropwdown中传递选定的值?

1 个答案:

答案 0 :(得分:0)

试试这个;

<asp:DropDownList id="ddlCodMercado" style="Z-INDEX: 111; LEFT: 10px; 
POSITION: absolute; TOP: 50px" runat="server" Width="130px" accessKey="R" 
CssClass="campo" tabIndex="2">
   <asp:ListItem Value="3433">3433</asp:ListItem>
   <asp:ListItem Value="3431">3431</asp:ListItem>
</asp:DropDownList>

<gvs:popupbutton id="pubConcessionaria" style="Z-INDEX: 109; LEFT: 400px; 
POSITION: absolute; TOP: 50px"
tabIndex="2" runat="server"  ImageUrl="../img/img_lupa.gif" URL='<%# 
string.Format("../Pop-ups/Color_pop.aspx?codMercado={0}", 
ddlCodMercado.SelectedValue) %>'></gvs:popupbutton>