[問題] C# .net網頁寫資料進資料庫問題
我有一個網頁
有一個gridview,有一個欄位是維護
用這個欄位的factoryid與session裡的orgid
代出另一個更新工廠資料的網頁
這個網頁編輯完之後始終沒有辦法寫進資料庫中
奇怪的是我用另外一種方法:參數直接帶值進去呼叫就可以寫進資料庫如下
operation.UpdateFactoryData(Session["sesOrgID"].ToString(),
HiddenField1.Value,DropDownList1.SelectedValue,TextBox1.Text);
operation.UpdateFactoryData("6","6","A","ABC-MART");
順便附上update method
public bool UpdateFactoryData(String orgid,String factoryid,String
itemid,String name)
{
SqlCommand command;
StringBuilder sb = new StringBuilder();
SqlConnection sqlconn = DBconnection.getConnection();
sb.Append("update Factory ");
sb.Append("set EXPENSEITEMBASICNO=@itemid,FACTORYNAME=@name ");
sb.Append("where ORGID= @orgid and FACTORYID= @factoryid");
command = new SqlCommand(sb.ToString(), sqlconn);
int orgint = Convert.ToInt32(orgid);
int facint = Convert.ToInt32(factoryid);
command.Parameters.AddWithValue("@orgid", orgid);
command.Parameters.AddWithValue("@factoryid", factoryid);
command.Parameters.AddWithValue("@itemid", itemid);
command.Parameters.AddWithValue("@name", name);
command.ExecuteNonQuery();
return true;
}
真的不知道哪裏出問題,請各位看看
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 111.246.201.23
→
07/27 18:24, , 1F
07/27 18:24, 1F
→
07/27 18:51, , 2F
07/27 18:51, 2F
→
07/27 18:51, , 3F
07/27 18:51, 3F
→
07/27 18:52, , 4F
07/27 18:52, 4F
→
07/27 22:49, , 5F
07/27 22:49, 5F
→
07/27 22:49, , 6F
07/27 22:49, 6F
→
07/27 22:49, , 7F
07/27 22:49, 7F
推
07/28 01:35, , 8F
07/28 01:35, 8F
→
07/28 01:36, , 9F
07/28 01:36, 9F
→
07/28 01:37, , 10F
07/28 01:37, 10F
→
07/28 01:37, , 11F
07/28 01:37, 11F
→
07/28 01:37, , 12F
07/28 01:37, 12F
→
07/28 09:45, , 13F
07/28 09:45, 13F
→
07/28 09:54, , 14F
07/28 09:54, 14F
推
07/28 10:03, , 15F
07/28 10:03, 15F
→
07/28 10:04, , 16F
07/28 10:04, 16F
→
07/28 10:04, , 17F
07/28 10:04, 17F
推
07/28 10:15, , 18F
07/28 10:15, 18F
→
07/28 15:01, , 19F
07/28 15:01, 19F
推
07/28 15:14, , 20F
07/28 15:14, 20F
→
07/28 15:15, , 21F
07/28 15:15, 21F
→
07/28 20:01, , 22F
07/28 20:01, 22F
→
07/28 20:01, , 23F
07/28 20:01, 23F
→
07/28 20:01, , 24F
07/28 20:01, 24F
→
07/28 20:02, , 25F
07/28 20:02, 25F
→
07/28 20:02, , 26F
07/28 20:02, 26F
→
07/28 20:03, , 27F
07/28 20:03, 27F
→
07/28 21:33, , 28F
07/28 21:33, 28F
→
07/28 21:34, , 29F
07/28 21:34, 29F
→
07/28 21:34, , 30F
07/28 21:34, 30F
推
07/28 22:35, , 31F
07/28 22:35, 31F
→
07/28 23:17, , 32F
07/28 23:17, 32F
→
07/28 23:18, , 33F
07/28 23:18, 33F
→
07/28 23:18, , 34F
07/28 23:18, 34F
→
07/28 23:19, , 35F
07/28 23:19, 35F
→
07/28 23:44, , 36F
07/28 23:44, 36F
→
07/28 23:45, , 37F
07/28 23:45, 37F
C_Sharp 近期熱門文章
PTT數位生活區 即時熱門文章