如何将文本框内容保存在数据库中? Textbox以HTML和CSS编程

时间:2016-05-18 11:35:42

标签: c# html sql asp.net textbox

我有一个完全完成的Web应用程序前端,现在我必须将文本框内容保存在我在VisualStudio中创建的数据库(SQL)中。

我的ConnectionString已经编程 Image 我将文本框编码如下:

My Code

如何在我的Html代码中集成我的C#以保存我的内容?

感谢您的时间< 3

1 个答案:

答案 0 :(得分:1)

在您希望它执行的任何事件中使用它:

string con = //your connection string here
string yourTextValue = Passnummer.Text; //This will extract the text from your textbox and store it in a variable
using (string con = new SqlConnection()) {
con.Open();

var command =
    new SqlCommand("INSERT INTO yourTable(columnname) VALUES (@textValue);", con);
command.Parameters.AddWithValue("@textValue", yourTextValue);

command.ExecuteNonQuery();
con.Close();
}

请参阅Here