I have this programming code:
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:IngBergConnectionString1 %>"
InsertCommand="INSERT INTO Table1(namn, development, roll, musik) VALUES (@namn,@development,@roll,@musik)" >
<InsertParameters>
<asp:Parameter Name="namn" Type="String" />
<asp:Parameter Name="development" Type="String" />
<asp:Parameter Name="roll" Type="String" />
<asp:Parameter Name="musik" Type="String" />
</InsertParameters>
</asp:SqlDataSource>
But I can't connect up TextBoxes with Parameters. Which could be solution to this situation?
Thanks.