tea_details.aspx.cs
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:2k
源码类别:

数据库编程

开发平台:

Visual C++

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. using System.Data.SqlClient;
  12. public partial class administration_details : System.Web.UI.Page
  13. {
  14.     protected void Page_Load(object sender, EventArgs e)
  15.     {
  16.         //导师详细信息,注意导师图片还没有做呢。。。。。。。。
  17.         string tea_Id = Request.QueryString["tea_Id"];
  18.  
  19.         SqlConnection connection = DB.connect_la();
  20.         connection.Open();
  21.         string commandString = "SELECT * FROM tea_table WHERE tea_id= " + tea_Id;
  22.         SqlCommand cmd = new SqlCommand(commandString, connection);
  23.         SqlDataReader sdr = cmd.ExecuteReader();
  24.         if (sdr.Read())
  25.         {
  26.             Label1.Text = sdr.GetValue(1).ToString();
  27.             Label2.Text = sdr.GetValue(11).ToString();
  28.             Label3.Text = sdr.GetValue(12).ToString();
  29.             Label4.Text = sdr.GetValue(13).ToString();
  30.             Label5.Text = sdr.GetValue(7).ToString();
  31.             Label6.Text = sdr.GetValue(3).ToString();
  32.             Label7.Text = sdr.GetValue(0).ToString();
  33.             Label8.Text = sdr.GetValue(9).ToString();
  34.             Label9.Text = sdr.GetValue(2).ToString();
  35.             Label10.Text = sdr.GetValue(5).ToString();
  36.             Label11.Text = sdr.GetValue(4).ToString();
  37.         }
  38.         sdr.Close();
  39.         connection.Close();
  40.     }
  41. }