2017-04-01 70 views
1

我在我的aspx頁面中有一個popupButton(自定義組件)。 (Car.aspx)如何從dropdownList URL中選擇值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通過選擇價值?

+0

您不能以這種方式設置選定的值。當頁面生成時,尚未進行選擇的頁面不會顯示在URL中。要麼使用回發來設置網址或使用JavaScript。 – VDWWD

回答

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> 
+0

我嘗試但沒有工作tks –

相關問題