Trying to fill texbox.text with data from database.
code:
con.Open();
SqlCommand updatetextbox = new SqlCommand("SELECT * FROM Arbeidstaker Where Person_id = 1", con);
SqlDataReader myDataReader;
myDataReader = con.ExecuteReader();
while (myDataReader.Read())
{
TextBox1.Text = myDataReader["Fornavn"].ToString();
}
--------------------
Is there a better way?
My code offc dont work properly...
tnx
Loading
VulpesPosted Oct 4, 2011, 9:15 AM
In the above code 'pos' should be replaced by the index of the Fornavn field in the row.