在我的页面中,有3个下拉菜单。
下拉列表1:用于存储从CarTab中检索到的数据库中的汽车模型(SQL)
下拉列表2:用于存储用户名
下拉3:用于存储牌照数
所有下拉菜单的功能,都有相互关联。假设管理员在下拉列表中选择本田Vios 1,则下拉2将显示之前仅预订本田Vios的用户名。然后在下拉3中,它将显示汽车的车牌号。例如,在CarTab中,有6个本田威驰,当然汽车有不同的车牌号。对?因此,下拉3将向管理员显示所选汽车的车牌号。
管理员选择本田Vios下拉1,下一个下拉2将显示选择本田vios和管理员选择用户A的用户列表,并且牌号为12H SGH。然后管理员点击保存按钮并将其保存到数据库中的新表中。
<td>Car Model</td>
<td class="style21">
<asp:DropDownList ID="DropDownList1" runat="server" Height="42px" Width="146px"
AutoPostBack="True">
<asp:ListItem>Please Choose</asp:ListItem>
<asp:ListItem>Honda Vios</asp:ListItem>
<asp:ListItem>Honda Civic</asp:ListItem>
<asp:ListItem>Honda City</asp:ListItem>
<asp:ListItem>Honda Jazz</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td class="style18">
User</td>
<td class="style19">
<asp:DropDownList ID="DropDownList2" runat="server"
DataSourceID="SqlDataSource1" DataTextField="Username"
DataValueField="Username" Height="36px" Width="137px" AutoPostBack="True">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:Connection %>"
SelectCommand="SELECT [Username] FROM [Rsvp] WHERE ([Model] = @Model)">
<SelectParameters>
<asp:ControlParameter ControlID="DropDownList2" Name="Model"
PropertyName="SelectedValue" Type="String" />
</SelectParameters>
</asp:SqlDataSource>
</td>
</tr>
<tr>
<td class="style16">
Plate
</td>
<td class="style17">
<asp:DropDownList ID="DropDownList3" runat="server"
DataSourceID="SqlDataSource2" DataTextField="Plate" DataValueField="Plate"
Height="45px" Width="141px" AutoPostBack="True">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource2" runat="server"
ConnectionString="<%$ ConnectionStrings:Connection %>"
SelectCommand="SELECT [Plate] FROM [CarTab] WHERE ([Model] = @Model)">
</asp:SqlDataSource
以下是问题:
如何删除管理员选择的用户名和板号?这意味着,当管理员登录时,本田vios列表和板号的用户名将不再出现。我需要帮助。请指导我。
答案 0 :(得分:0)
您可以在数据库上创建一个查找表,以跟踪需要选择的项目。然后为该表添加联接。 像这样:
SELECT [Username] FROM [Rsvp] join SelectedItems
on [Rsvp].ID = SelectedItems.ID
WHERE [Model] = @Model and SelectedItems.HasBeenSelected = False