|
|
|
สอบถามหน่อยค่ะพอดีติดที่ว่าการดึงข้อมูลจากฐานข้อมูล SQL Server มาโชว์ใน TextBox.Text โดยการเขียนภาษา C#.Net |
|
|
|
|
|
|
|
ง่าย ๆ เลยครับ ใช้พวก DataReader, DataTable หรืออื่น ๆ ได้เลยครับ
เหมือนบทความนี้เลยครับ
Code (C#)
void ViewData()
{
//*** 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();
}
}
ASP.NET SQL Server Edit/Update Record
|
|
|
|
|
Date :
2016-12-14 10:07:10 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณก็เปลี่ยนเป็น TextBox.Text ของคุณสิครับ
|
|
|
|
|
Date :
2016-12-14 20:11:13 |
By :
Luz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนใน เหตุการณ์
private void textBox1_TextChanged(object sender, EventArgs e)
{
/// Input code here
}
|
|
|
|
|
Date :
2016-12-16 09:49:12 |
By :
SB. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|