DropDownList4.Items.Clear()
DropDownList4.Items.Add("--Select City--")
Dim st As String
st = "select * from tbl_city where State_ID=" + DropDownList3.SelectedItem.Value
Dim cm As New SqlCommand(st, con)
Dim da As New SqlDataAdapter(cm)
Dim d As New DataTable()
da.Fill(d)
DropDownList4.DataSource = d
DropDownList4.DataBind()
this is my code i got error
Incorrect syntax near '='.
please help me
i got error at this line
da.Fill(d)
thanks in advance
please reply fast
i really want help
Ranjit PowarPosted Aug 27, 2017, 10:04 AM
Amit GuptaPosted Aug 27, 2017, 3:59 AM
saurabh tadviPosted Aug 27, 2017, 3:03 AM
saurabh tadviPosted Aug 27, 2017, 2:58 AM
Amit GuptaPosted Aug 27, 2017, 2:54 AM