一段常用的Page_Load事件

javaprogramers發表於2006-05-13
protected void Page_Load(object sender, EventArgs e)
  {
   SqlConnection myConnection = new SqlConnection("server=Localhost;database=pubs;uid=sa;pwd=;");//建立SQL連線
   SqlCommand myCommand = new SqlCommand("SELECT title, price FROM Titles WHERE price > 0", myConnection);//建立SQL命令
  
   try
   {
    myConnection.Open();//開啟資料庫連線
    MyGrid.DataSource = myCommand.ExecuteReader();//指定 DataGrid 的資料來源
    MyGrid.DataBind();//繫結資料到 DataGrid
    myConnection.Close();//關閉資料連線
   }
   catch(Exception ex)
   {
    //捕獲錯誤
    HttpContext.Current.Response.Write(ex.ToString());
   }
  }

相關文章