Dropdown中的多个选择和更新查询字符串

时间:2012-06-20 05:54:59

标签: c#

我根据公司及其客户的选择生成报告。我使用一个下拉列表公司,并根据公司显示客户。但是,我希望能够选择多个客户,当用户点击查看报告的按钮时,我想用该选择更新查询字符串。如果客户的选择是三,我想使用查询字符串传递他们的客户代码。在排序查询字符串中根据客户的选择发送。

请帮帮我。

谢谢和问候。

Mitesh

1 个答案:

答案 0 :(得分:0)

在您的选择页面(aspx)中:

...
<script type="text/javascript">
        function submitSelection() {
            var customerList = document.getElementById('<%= lbCustomers.ClientID %>');
            var companyList = document.getElementById('<%= lbCompany.ClientID %>');
            var selectedCustomerQuery = [];
            for (var i = 0; i < customerList.options.length; i++) {                
                if (customerList.options[i].selected)
                    selectedCustomerQuery.push('customer_id=' + customerList.options[i].value);
            }
            location.href = 'Report.aspx?company_id=' + companyList.value + '&' + selectedCustomerQuery.join('&');
        }
    </script>
        <asp:DropDownList ID="lbCompany" runat="server" SelectionMode="Single" >
        <asp:ListItem Value="1">Company 1</asp:ListItem>
        <asp:ListItem Value="2">Company 2</asp:ListItem>
    </asp:DropDownList><br />
    <asp:ListBox ID="lbCustomers" runat="server" SelectionMode="Multiple">
        <asp:ListItem Text="John" Value="1"></asp:ListItem>
        <asp:ListItem Text="Paul" Value="2"></asp:ListItem>
        <asp:ListItem Text="Peter" Value="3"></asp:ListItem>
    </asp:ListBox><br />
    <input id="Button1" type="button" value="View Report" onclick="submitSelection()" />
...

然后在你的Report.aspx.cs:

...
protected void Page_Load(object sender, EventArgs e)
        {
            var selectedCompany = Request.QueryString["company_id"];
            //get passed selected customers, will be stored in an array
            var selectedCustomers = Request.QueryString.GetValues("customer_id");

            Response.Write(string.Format("Company ID: {0}, Customers: {1}", selectedCompany.ToString(), string.Join(",", selectedCustomers)));
        }
...

这说明了一个没有回发到页面的示例。如果您需要回发以处理代码中的其他逻辑,则必须更改&lt; input&gt;按钮到ASP.NET按钮控件并处理其OnClick事件。