C中,如何讓TextBox控制元件顯示資料庫中我要的資料或者文

2021-05-30 16:41:02 字數 3134 閱讀 7677

1樓:匿名使用者

若是你前臺有拉了一個textbox控制元件的話,就直接在後臺寫

string txt=「資料庫查詢後所獲得的值」

textbox控制元件名.text=txt。tostring();

2樓:匿名使用者

後臺先把資料庫或文字要顯示的資料讀取出來

然後編寫**this.lable1.text=變數;

this後面輸入.後,能直接預覽的到lable標籤的名字。

3樓:匿名使用者

textbox1.text=dt.rows[0]["username"].tostring();

textbox2.text=dt.rows[0]["password"].tostring();

sqlconnection con = new sqlconnection();

con.connectionstring="";

con.open();

sql***mand cmd = new sql***mand();

cmd.connection = con;

cmd.***mandtext = "select * from tb_users";

sqldataadapter sda = new sqldataadapter();

sda.select***mand = cmd;

datatable dt=new datatable();

sda.fill(dt);

4樓:

textbox textbox = new textbox();

textbox.text = "想要的顯示的文字";

如何將資料庫資訊顯示到c#textbox控制元件裡

5樓:匿名使用者

是不是可以bai這樣理解 - 把登陸

du窗體zhi中textbox和***bobox中的值傳到窗體2,然後在窗體2用textbox顯示dao

出來?如果是這樣內的話--首先在窗體2中定義2個變容量用來接收從登陸窗體傳過來的值

窗體2定義的變數用public修飾

public string name = "";

public string type = "";

form2窗體的load方法

textbox1.text = name + type;

在登陸窗體的button按鈕裡面寫

from2 f2 = new form2();

f2.name = this.textbox1.text;

f2.type = this.***bobox1.selecteditem.tostring();

f2.show();

另外,團idc網上有許多產品**,便宜有口碑

6樓:

private void databind()

在窗體載入時呼叫這個方法。

7樓:匿名使用者

先把值從資料庫抄取出襲來 然後賦值給已經定義好的控制元件就可以了!程式載入的時候執行

txtname.text=dt.rows[0]["name"].tostring();

txt***.text=dt.rows[0]["***"].tostring();

8樓:匿名使用者

protected void page_load(object sender, eventargs e)

private static sqlconnection connection;

public static sqlconnection connection

else if (connection.state == system.data.connectionstate.closed)

else if (connection.state == system.data.connectionstate.broken)

return connection;

}private void getstudent()

我是從「上海全鼎軟體學院」畢業的——62616964757a686964616fe4b893e5b19e31333264643236——————

9樓:匿名使用者

把資料從資料庫表中取出來,直接用控制元件接就可以了

c#中把textbox控制元件中的內容新增進資料庫的某個表中

10樓:

sql = string.format("insert into [tb_book] (tb1, tb2,tb3,tb4,tb5) values('','','','','')", textbox1.text.

trim(), textbox2.text.trim(),textbox3.

text.trim(),textbox4.text.

trim(),textbox5.text.trim());

字串型的

才加單引號,其他型別的不用單引號

11樓:從沒覺得累

對sql語句就行比如string f=」insert into表名(欄位)values(插入的值)」就行了

12樓:簡單

insert into表名(欄位1,欄位2……欄位n)values(textbox1.text,textbox2.text,……,textboxn.text)。

是變數,無需加引號,是常量,加單引號。sql語句中不用雙引號。

c#如何在textbox中顯示sql資料庫中表的每一行資料

13樓:夜偌殘

用dataset接收行資料,

dataset ds=這裡是sql查詢方法textbox1.text=ds.tables[0].

rows[0]["..."].tostring();//例如第一個textbox對應資料庫id欄位 ["...

"]這裡...換成資料庫欄位id;

textbox2.text=ds.tables[0].rows[0]["..."].tostring();//後面類似。

不知道這個方法你看的懂不

C中textbox控制元件中輸入的數字如何賦值給Int型變數

在textbox裡面輸入的數字賦值給int temp 如何賦值 temp txtconverttoint textbox.text public static int txtconverttoint string txt temp txtconverttoint textbox.text publi...

c中將兩個TextBox控制元件中的數字用BOtton相加顯

int a convert.toint32 txt1.text int b convert.toint32 txt2.text txt3.text a b tostring 使用textbox控制元件和listbox控制元件實現一個簡單的計算器。使用兩個textbox輸入兩個數後,private s...

C怎麼給動態生成的控制元件(Textbox)賦值

將tbox.location new system.drawing.point 14,92 tbox.size new system.drawing.size 96,21 tbox.name tbox 等生成控制元件的 寫到 private void tbox textchanged object ...