Good day all,
I have this dropdownlist :
<asp:DropDownList ID="DropDownList1"
runat="server"
AutoPostBack="true"
DataSourceID="SqlDataSource1"
DataTextField="Categorie"
DataValueField="Cat_ID"
>
</asp:DropDownList>
and the sqldatasource select * all from [tbl_Cat]
Its used to filter the database on category. It works perfectly but it only shows the 3 categories that are in the tbl_Cat
(duh) But I also want a select all
item in de ddl. The dropdownlist and the datagrid are not made with code-behind. Is it possible to entry a select - all record trough codebehind?
Kind regards, and thanks for your time