在asp.net中使用更新数据库的Web服务方法

时间:2009-11-12 15:26:43

标签: asp.net-ajax

如何在Web服务中使用更新查询wethod

1 个答案:

答案 0 :(得分:2)

您的Web服务方法将像任何其他方法一样调用更新查询。

using(SqlConnection conn = new SqlConnection(connectionString))
{
    conn.Open();

    SqlCommand command = new SqlCommand("update field1 from Table where rowId = 7", conn);

    command.ExecuteNonQuery();
}