Display data with web developer
code : (the ? part is the part that i confuse with)
Protected Sub reslist_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
Dim DataSource1 As New SqlDataSource()
DataSource1.ConnectionString = ConfigurationManager.ConnectionStrings("ConnectionString").ToString()
DataSource1.SelectCommandType = SqlDataSourceCommandType.Text
DataSource1.SelectCommand = "select today_menu, price, date FROM menu VALUES (@menu, @price, @date)"
If reslist.SelectedValue = ListItem.FromString("sakura").ToString Then
menulabel.Text = ?
End If

