0
DBからレコードを取得する方法についてのサンプルがあります。&ドロップダウンリストで選択した後に関連するテキストボックスにデータを入力してください。私が持っているものは間違いなく働いていません&私はVS 2008で働いています。ドロップダウンリストで選択した後、SQLクエリーからテキストボックスにデータを入力する
は私が持っているもの:
Dim myConn As New SqlConnection
Dim myCmd As New SqlCommand
Dim dtrReader As SqlDataReader
myConn.ConnectionString = ConfigurationManager.ConnectionStrings("ConnectionString").ConnectionString
myCmd = myConn.CreateCommand
myCmd.CommandText = "SELECT * FROM Product WHERE product_id = '" & DropDownList2.Text & "'"
'myCmd.CommandType = CommandType.Text
'populate controls from DB
'myCmd.Parameters.Add(New SqlParameter("@product_id", a))
myCmd.Parameters.Add(New SqlParameter("@product_name", (txtProductName2.Text)))
myCmd.Parameters.Add(New SqlParameter("@product_title", txtProductTitle2.Text))
myCmd.Parameters.Add(New SqlParameter("@product_desc", txtProductDescription2.Text))
myCmd.Parameters.Add(New SqlParameter("@product_author", txtProductAuthor2.Text))
mycmd.Dispose()
myConn.Close()
myConn.Dispose()
それでした!本当にありがとう! :) – brainsfrying