Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<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)" 
share|improve this question
Maybe you can tell us what the problem might be then flag to re-open. Thanks. – Kev Sep 11 '11 at 0:02

closed as not a real question by Kev Sep 11 '11 at 0:02

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

yes you have, any many!

first of all you should not concatenate server side code like that, if you really want you should do it using the syntax: <%# TextBox1.Text %>

but even then I don't think is going to work because at the moment the page is rendered the textbox is probably empty, then there are issues with SQL Injection and so on.

I would move the assignment of your ConnectionString and command text to the codebehind, something you can do in the PageLoad event, like this for example (pseudo-code)

myDataSouce.ConnectionString = GetConnectionString();
myDataSouce.DeleteCommand = "DELETE FROM Responsable...
myDataSouce.InsertCommand = "INSERT INTO ... 
myDataSouce.SelectCommand = "SELECT DISTINCT... 
myDataSouce.UpdateCommand = "UPDATE Responsable...

in this way you have way more control and possibilities ;-)

you are using QueryParameters for some of your queries, use one of them also for the INSERT so to avoid any possible issue with bad input from the TextBox.

share|improve this answer
Ichange the code . InsertCommand="INSERT INTO [Responsable] ([idSociete],[Nom], [Prenom]) VALUES ('<%# TextBox1.Text%>',@Nom, @Prenom)" But i have this error when i exucute app Server Error in '/' Application. Conversion failed when converting the varchar value '<%# TextBox1.Text%>' to data type int. – iDurardz Sep 10 '11 at 10:37
Sounds like there is something in your database that is wrong. I had that problem and I checked my database and realized a column had one line of wrong information, I deleted the line and that conversion error went away. :) – jlg Sep 26 '11 at 18:48

Not the answer you're looking for? Browse other questions tagged or ask your own question.