Learn As Much As You Can

Friday, 15 March 2013

How to make the HTML table in C# (on the server side, values comes from the database)

 while (sqr.Read())             {                 string partner_name = sqr.GetString(0);                 int partner_id = sqr.GetInt32(1);  ...

How to format the string in the title property of the image tag(values comes from the database)

using (SqlConnection conn = DataAccess.GetConnected())             {                 SqlCommand cmd = new SqlCommand("GetImageForSlider", conn);          ...