protected void Button1_Click(object sender, EventArgs e) { 后面填什么可以通过网页向数据库添加记录
时间: 2024-01-31 22:02:13 浏览: 122
您可以使用以下代码向数据库添加记录:
```
protected void Button1_Click(object sender, EventArgs e)
{
string connectionString = "YourConnectionString"; // 替换成您的数据库连接字符串
string query = "INSERT INTO YourTableName (Column1, Column2) VALUES (@Value1, @Value2)"; // 替换成您的表名和列名
using (SqlConnection connection = new SqlConnection(connectionString))
{
SqlCommand command = new SqlCommand(query, connection);
command.Parameters.AddWithValue("@Value1", TextBox1.Text); // 替换成您要添加的第一个值
command.Parameters.AddWithValue("@Value2", TextBox2.Text); // 替换成您要添加的第二个值
connection.Open();
int result = command.ExecuteNonQuery();
if (result > 0)
{
// 添加记录成功
}
else
{
// 添加记录失败
}
}
}
```
阅读全文