本文介绍了如何将dynMically创建的文本框中的值插入到db中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我动态创建了文本框。我想从该文本框上传数据到db bt我不会工作..



i am created textbox dynamically . i want to upload datas from that textbox to db bt i wont works..

TextBox t = new TextBox();
          t.Location = new System.Drawing.Point(379, 60);
          this.Controls["dynamicTextBox"].Text = "my text";
          t.Text = "What are you doing now";
          t.Multiline = true;
          t.Size = new System.Drawing.Size(430, 55);
          panel2.Controls.Add(t);





还有一件我无法做到的事情t.id = DD; id显示错误。所以我尝试t.name =dd但插入db sqlcommand我无法插入值insert into tablename values'+ dd.text +',c。

dd.text显示错误。

请纠正或提供有效代码



and one more thing i cannot able to ad t.id="dd"; id shows error. so i try t.name="dd" but insert db sqlcommand i cannot insert values "insert into tablename values '"+ dd.text+"'",c.
dd.text shows error.
kindly rectify or provide valid code

推荐答案



这篇关于如何将dynMically创建的文本框中的值插入到db中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 01:59