1 2 3 4 5 6
| <asp:SqlDataSource ID="MarketingSqlServer" runat="server"
SelectCommand="SELECT [id], [client], [societe], [nom], [prenom], [email], [telephone], [salon], [apero], [repas], [registration_date] FROM [inscriptions]"
UpdateCommand="UPDATE [inscriptions] SET [client] = @client, [societe] = @societe, [nom] = @nom, [prenom] = @prenom, [email] = @email, [telephone] = @telephone, [salon] = @salon, [apero] = @apero, [repas] = @repas WHERE [id] = @id"
DeleteCommand="DELETE FROM [inscriptions] WHERE [id] = @Id"
ConnectionString="<%$ ConnectionStrings:MarketingSqlServer %>">
</asp:SqlDataSource> |
Partager