First create Connection with database and then Dim databaseRecord As SqlDataAdapter Dim dstRecord As DataSet databaseRecord = New SqlDataAdapter("Select * from ", con) dstRecords = New DataSet databaseRecord .Fill(dstRecords) dropdownlistname.DataSource = dstRecords dropdownlistname.DataTextField = "" dropdownlistname.DataValueField = "" dropdownlistname.DataBind() I hope this will workout
ash83