ขอวิธีเรียกข้อมูลจากMs SQL ให้มาแสดงที่ TextBox ทีครับ [C#]
ขุดๆๆ
Date :
2011-04-18 08:52:09
By :
ming011
ก่อนจะขุดไม่ลองไป search หาดูหน่อยหรอคะ เคยมีคนถามคำถามแบบเดียวกะคุณเปี้ยบเลย
นะคะช่วยกล้าๆค้นคว้าด้วยตัวเองหน่อย
ตรงช่อง "อยากหาอะไรพิมพ์ตรงนี้ได้เลยจ้า" ที่พี่วินทำไว้ให้ด้านบนน่ะค่ะ
Date :
2011-04-18 10:55:55
By :
blurEyes
โอ้เคครับ เด๋วไปลองก่อน
Date :
2011-04-18 14:45:08
By :
ming011
ผมลองหาดูแล้้วแต่ไม่เจออันที่ต้องการเลยง่าครับ เช่น
string strConn = WebConfigurationManager.ConnectionStrings["LoConn"].ConnectionString;
SqlConnection Conn = new SqlConnection(strConn);
Conn.Open();
string SqlC = "SELECT ID FROM appID WHERE(ID = 'ming01')";
SqlCommand com = new SqlCommand(SqlC, Conn);
DataSet ds = new DataSet();
SqlDataReader dr = com.ExecuteReader();
textbox1.text = ต้องเขียนถึงเอาข้อมูลจากSQL มาได้ล่ะครับ
ปล.ช่วยตอบทีจิครับ
Date :
2011-04-20 23:30:32
By :
ming011
SqlCommand cmd = new SqlCommand(SqlC, Conn)
textbox1.text = cmd.ExecuteScalar().ToString()
Date :
2011-04-21 00:52:35
By :
สาวเอ๋อ
ขอบคุณครับ เด๋วไปลองดูก่อน
Date :
2011-04-21 12:34:17
By :
ming01
Code (C#)
//*** DataTable ***//
SqlDataAdapter dtAdapter;
DataTable dt = new DataTable();
strSQL = "SELECT * FROM customer WHERE CustomerID = '"+ Request.QueryString["CustomerID"] +"' ";
dtAdapter = new SqlDataAdapter(strSQL, objConn);
dtAdapter.Fill(dt);
if(dt.Rows.Count > 0)
{
this.txtCustomerID.Text = (string)dt.Rows[0]["CustomerID"];
this.txtName.Text = (string)dt.Rows[0]["Name"];
this.txtEmail.Text = (string)dt.Rows[0]["Email"];
this.txtCountryCode.Text = (string)dt.Rows[0]["CountryCode"];
this.txtBudget.Text = (string)dt.Rows[0]["Budget"].ToString();
this.txtUsed.Text = (string)dt.Rows[0]["Used"].ToString();
}
Go to : (C#) ASP.NET SQL Server Edit/Update Record
Date :
2011-04-21 12:45:13
By :
webmaster
textbox1.text = cmd.ExecuteScalar().ToString() ใช้ได้ล่ะครับ
แต่ทำไมผมลองวิธีคุณ mr.win มันไม่.ฑนไหง่าครับ งงมากเลย
Date :
2011-04-22 23:04:44
By :
ming011
Load balance : Server 03