Không insert được dữ liệu xuống database | VN-Zoom | Cộng đồng Chia Sẻ Kiến Thức Công Nghệ và Phần Mềm Máy Tính

Adblocker detected! Please consider reading this notice.

We've detected that you are using AdBlock Plus or some other adblocking software which is preventing the page from fully loading.

We need money to operate the site, and almost all of it comes from our online advertising.

Please add vn-z.vn to your ad blocking whitelist or disable your adblocking software. 

All the knowledge we share is completely free. If you are willing, please support us here.

×

Không insert được dữ liệu xuống database

Chào ae mình có tạo các textbox,button dynamic như này: hàm save không gọi đc các textbox để insert data xuống database
private void Createtextbox()
{
TextBox textboxUsername = new TextBox();
textboxUsername.Location = new Point(420, 50);
textboxUsername.Size = new Size(500, 30);
textboxUsername.Name = "text_user";
this.Controls.Add(textboxUsername);

TextBox textboxPassword = new TextBox();
textboxPassword.Location = new Point(420, 80);
textboxPassword.Size = new Size(500, 30);
textboxPassword.Name = "text_pass";
this.Controls.Add(textboxPassword);

TextBox textboxMail = new TextBox();
textboxMail.Location = new Point(420, 110);
textboxMail.Size = new Size(500, 30);
textboxMail.Name = "text_mail";
this.Controls.Add(textboxMail);

Button btnSave = new Button();
btnSave.Location = new Point(420, 150);
btnSave.Name = "Submit";
btnSave.Size = new Size(80, 26);
btnSave.Click += new EventHandler(btnSave_Click);
this.Controls.Add(btnSave);

}

private void btnSave_Click(object sender, EventArgs e)
{

TextBox textboxUsername = (TextBox)sender;// textboxUsername not instal

}
Hướng dẫn như này mà mình ko hiểu các bạn chuyên sâu gọi các textbox giúp mình với, mình là tay ngang code chả hiểu dc nhiều
//Look closely at your line this.Controls.Add(textboxUsername);You added a control to the form's Controls collection. In your save code, you could enumerate the controls in the same form's Controls collection to find the textbox that you added. How do you know if you found the right control? Well, look at line textboxUsername.Name = "text_user"; where you gave that text box a name. So look for a control with that name and you have found your textbox.
 

canlong28

Búa Gỗ
Bạn đưa thêm thông tin lỗi, hoặc tự tìm cách giải quyết bằng cách search lỗi trên StackOverflow
 


Bài Viết Mới

Top