本文介绍了文本框数据输入后自动保存。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是c#asp.net的初学者,试着使用条形码扫描仪创建一个系统。我的问题是我需要按下按钮将数据保存在我们的数据库中。我需要的是在扫描条形码后自动保存数据。



我尝试过:



i am beginner in c# asp.net ill try to create a system using barcode scanner. my problem is i need to press the button to save the data in our database. all i need is to autosave data after scan the barcode.

What I have tried:

private void btn_Save_Click(object sender, EventArgs e)
     {
             Rooming rooming = new Rooming();
             rooming.RowNo = Convert.ToInt32(cmb_RowNo.Text);
             rooming.LineNo = Convert.ToInt32(cmb_LineNo.Text);
             rooming.StackNo = Convert.ToInt32(cmd_StackNo.Text);
             rooming.BoxNo = txt_BoxNo.Text;
             db.roomings.Add(rooming);
             db.SaveChanges();
     }

推荐答案


这篇关于文本框数据输入后自动保存。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 10:48