sql >> Database >  >> RDS >> Sqlserver

Hoe kan ik DropDownList geselecteerde waarde toewijzen aan SqlDataSource?

Als u SqlDataSource . gebruikt , de gemakkelijkste manier is om gegevens aan de voorkant te binden.

DataBase

Opmerking:ik heb TypeId gemaakt als geheel getal.

ASPX

Als de geselecteerde waarde van DropDownList -1 is , SqlDataSource zal alle items retourneren.

<asp:DropDownList ID="BookListddl" runat="server" AutoPostBack="True">
    <asp:ListItem Text="All" Value="-1" />
    <asp:ListItem Text="Fiction" Value="1" />
    <asp:ListItem Text="None Fiction" Value="2" />
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
    ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
    SelectCommand="SELECT * FROM [BookTbl] WHERE [TypeId] = @TypeId OR @TypeId = -1">
    <SelectParameters>
        <asp:ControlParameter ControlID="BookListddl"
            PropertyName="SelectedValue"
            Name="TypeId"
            Type="Int32" />
    </SelectParameters>
</asp:SqlDataSource>



  1. Lees en importeer XLSX-bestand (Excel) in Oracle

  2. Het personage vóór Dash verwijderen

  3. De 8 meest populaire databases

  4. Bestel een MySQL-tabel met twee kolommen