这是Plunker。 http://plnkr.co/edit/UQ4Pb94QzDbScnN7z2Vb?p=preview
根据此plunker,用户选择一个csv文件。选择文件后,其内容将显示在其下方。它是由于HTML代码中提到的{{fileContent}}。
我希望用户点击“保存”按钮,而不是直接显示在下方。单击保存按钮后,我希望结果显示在控制台日志中,而不是在选择文件按钮下方。
<html>
</html> //added this code so it allows me to post the question.
知道如何实现这个目标吗?
答案 0 :(得分:1)
将EmID
传递给public partial class Sales : Form
{
...
private void btnUpdate_Click(object sender, EventArgs e)
{
int EmpID = int.Parse(txtEmpID.Text);
OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\\SalesData.mdb");
OleDbCommand update = new OleDbCommand("UPDATE Sales SET Printer = '" + txtPrinter.Text + "', Ink = '" +txtInk.Text + "', Paper = '"+txtPaper.Text+"' WHERE EmID = '" + txtEmpID.Text + " ", con);
con.Open();
update.ExecuteNonQuery();
con.Close();
MessageBox.Show("Sales Updated");
}
...
}
fileContent
save() function