Hi Sumeet,
I checke your code is validation for all control except dropdowlist. so for validation dropdownlist replcae below code with your code.
You need to add below line of code.
dropdownclassrecoganized.Items.Add(New ListItem("--Select--", "0"))
Code
Public Sub loadclassrecog()
Dim i As Integer = 0
dropdownclassrecoganized.Items.Clear()
dropdownclassrecoganized.Items.Add(New ListItem("--Select--", "0"))
Using con As SqlConnection = New SqlConnection(ConfigurationManager.ConnectionStrings("constr").ConnectionString)
Using cmd As SqlCommand = New SqlCommand("Select * from Customers", con)
con.Open()
Dim dr As SqlDataReader = cmd.ExecuteReader()
While dr.Read()
i += 1
dropdownclassrecoganized.Items.Add(dr("Name").ToString())
dropdownclassrecoganized.Items(i).Value = dr("CustomerId").ToString()
End While
con.Close()
End Using
End Using
End Sub