<asp:SqlDataSource ID="SqlDataSource2" runat="server"
ConnectionString="<%$ ConnectionStrings:GesStageDataConnectionString1 %>"
DeleteCommand="DELETE FROM Responsable FROM Responsable INNER JOIN Societe ON Responsable.idSociete = @idSociete "
InsertCommand="INSERT INTO [Responsable] ([idSociete],[Nom], [Prenom]) VALUES ('"+TextBox1.Text+"',@Nom, @Prenom)"
SelectCommand="SELECT DISTINCT Responsable.idSociete,Responsable.idResponsable, Responsable.Nom, Responsable.Prenom FROM Responsable INNER JOIN Societe ON Responsable.idSociete = @idSociete "
UpdateCommand="UPDATE Responsable SET Nom =@Nom, Prenom =@Prenom WHERE idResponsable = @idResponsable">
<SelectParameters>
<asp:QueryStringParameter Name="idSociete" Type="Int32" QueryStringField="idSociete" />
</SelectParameters>
</asp:SqlDataSource>
I have problem with this requet ?
InsertCommand="INSERT INTO [Responsable] ([idSociete],[Nom], [Prenom])
VALUES ('"+TextBox1.Text+"',@Nom, @Prenom)"