SqlDataAdapter dtAdapter = default(SqlDataAdapter); DataTable dt = new DataTable(); strSQL = "SELECT * FROM products WHERE ProductId = @ProductId "; dtAdapter = new SqlDataAdapter(strSQL, objConn); objCmd = dtAdapter.SelectCommand; objCmd.Parameters.Add("@ProductId", SqlDbType.Int).Value = Request.QueryString["ProductId"]; dtAdapter.Fill(dt); if (dt.Rows.Count > 0) { this.ImgPic.ImageUrl = "image_product.aspx?ProductId=" + dt.Rows[0]["ProductId"]; this.txtName.Text = dt.Rows[0]["ProductName"].ToString(); this.txtProductdetail.Text = dt.Rows[0]["ProductDetail"].ToString(); this.txtproductPrice.Text = dt.Rows[0]["ProductPrice"].ToString(); this.DropDownList1.SelectedIndex.ToString = dt.Rows[0]["Brand_name"].ToString(); //ติด error คับตรงนี้ } dt = null;
DropDownList1.SelectedIndex = dt.Rows[0]["Brand_name"];
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง