我根据公司及其客户的选择生成报告。我为公司使用一个下拉菜单,并根据公司显示客户。但是,我想让选择多个客户成为可能,并且当用户单击查看报告的按钮时,我想使用该选择更新查询字符串。如果客户的选择是三个,我想使用查询字符串传递他们的客户代码。在排序查询字符串是根据客户的选择发送。
请帮我。
谢谢并恭祝安康。
米特什
我根据公司及其客户的选择生成报告。我为公司使用一个下拉菜单,并根据公司显示客户。但是,我想让选择多个客户成为可能,并且当用户单击查看报告的按钮时,我想使用该选择更新查询字符串。如果客户的选择是三个,我想使用查询字符串传递他们的客户代码。在排序查询字符串是根据客户的选择发送。
请帮我。
谢谢并恭祝安康。
米特什
在您的选择页面 (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)));
}
...
这说明了一个没有回发到页面的示例。如果您需要回发以处理后面代码中的其他逻辑,则必须将 <input> 按钮更改为 ASP.NET 按钮控件并处理其 OnClick 事件。