1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <asp:SqlDataSource ID="SQLDataSource_Unite_par_service" runat="server"
ConnectionString="<%$ ConnectionStrings:Connexion_Procedures %>"
SelectCommand="SELECT DISTINCT [UNIT_ID], [UNIT_Nom], [UNIT_Desciption], [SERV_Nom] FROM [Unites_par_Services] WHERE ([SERV_Nom] = @SERV_Nom)">
<SelectParameters>
<asp:ControlParameter ControlID="DropDownList1" Name="SERV_Nom"
PropertyName="SelectedValue" Type="String"
ConvertEmptyStringToNull="True" DefaultValue=""/>
</SelectParameters>
</asp:SqlDataSource> |
Partager