-2
我正在嘗試使用列表框將新項添加到表中。如何使用列表框將新記錄添加到表中c#
這是我到目前爲止的代碼:
public Int32 InsertDVD(string ToDo)
{
//var to store the primary key
Int32 PrimaryKey;
//connect to the database
clsDataConnection MyDatabase = new clsDataConnection();
//add the parameter
MyDatabase.AddParameter("@ToDo", ToDo);
//execute the query
PrimaryKey = MyDatabase.Execute("sproc_tblToDo_Insert");
//return the primary key of the new record
return PrimaryKey;
}
我不確定要放什麼的代碼。
protected void btnAdd_Click(object sender, EventArgs e)
有人可以幫忙嗎?
首先刪除所有這些意見。其中沒有一個增加任何*值。他們佔用了空間,浪費了讀者的時間,並且什麼都不貢獻。 – Servy
那麼你只是問如何從'btnAdd_Click'調用'InsertDVD'? –
您的InsertDVD方法是按原樣工作的嗎? 如果是這樣,你不能只是創建一個具有該方法的類的實例,只是從你的點擊事件調用它? –