Gem til database med ASP .NET C#, hvordan?
Jeg kunne godt tænke mig at simpelt eksempel der viser hvordan man med ASP .NET C# Gemmer indholdet fra en asp:TextBox, til en database når jeg trykker på submit.Følgende er min database opsætning og det ville være super nice hvis i venligst inkludere, referere til dem i jeres eksempel.
På forhånd.
[Web.config]
<connectionStrings>
<add name="svendsenConnectionString" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=svendsen;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
[Default.aspx]
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:svendsenConnectionString %>" DeleteCommand="DELETE FROM [Table_1] WHERE [ID] = @ID"
InsertCommand="INSERT INTO [Table_1] ([Text]) VALUES (@Text)"
SelectCommand="SELECT [Text], [ID] FROM [Table_1]"
UpdateCommand="UPDATE [Table_1] SET [Text] = @Text WHERE [ID] = @ID">