我有一个网络服务功能,用于更新我的数据库。我想从我的网络应用程序中调用它,但它不起作用。在我调用我的 Web 服务后,它可以通过我的 Web 服务进行更新,但不能通过我的 Web 应用程序进行更新。我调用服务功能的代码是否正确?
这是我的网络服务更新功能:
[WebMethod(EnableSession = true)]
public string sell_item(string name, string photo, string description, string initial_price, string bid_time)
{
SqlConnection con = new SqlConnection("Data Source=USER-PC;Initial Catalog=Bidding;Integrated Security=True");
con.Open();
SqlCommand cmd = new SqlCommand("UPDATE login SET name = @name, photo = @photo, description = @description, initial_price = @initial_price, bid_time = @bid_time where username='"+ Session["username"] +"'", con);
cmd.Parameters.AddWithValue("@name", name);
cmd.Parameters.AddWithValue("@photo", photo);
cmd.Parameters.AddWithValue("@description", description);
cmd.Parameters.AddWithValue("@initial_price", initial_price);
cmd.Parameters.AddWithValue("@bid_time", bid_time);
cmd.ExecuteNonQuery();
con.Close();
return "Product has been upload successfully!";
}
这是我调用该函数的 Web 应用程序代码:
public partial class bidpage : System.Web.UI.Page
{
abc.Service a = new abc.Service();
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = Convert.ToString(a.sell_item(Convert.ToString(TextBoxProduct.Text), Convert.ToString(TextBoxPhoto.Text), Convert.ToString(TextBoxDescription.Text), Convert.ToString(TextBoxPrice.Text), Convert.ToString(TextBoxBidTime.Text)));
}
}
在我的 sqlcommand 中,我尝试删除 WHERE,我的 Web 应用程序可以将数据更新到数据库,但对于所有行,更新的数据都是相同的。但是当我放回 WHERE 语句后跟 Session["username"] 时,我在 Web 应用程序中的更新不会存储任何数据。有什么帮助吗?我真的不知道如何使用会话更新我的数据。