データソースの背後にあるコードおよび/または接続)がデータバインド(後にクローズする必要があるのでしょうか?私のコードは、あなたが最終的にトライキャッチを使用しなければならないデータソースと接続の背後にあるコードは使用後に閉じる必要がありますか?
Dim conn As SqlConnection = New SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings("DefaultDataBaseServer").ConnectionString)
conn.Open()
Dim sql As String = lblConcept.Text.Replace("@xxxxxx", xxxxxID.Value)
Dim myCommand As SqlCommand = New SqlCommand(sql, conn)
ckConceptList.DataSource = myCommand.ExecuteReader()
ckConceptList.DataBind()