As previously noted, the SelectedIndex property is read-write, so setting a SelectedIndex is as simple as equating it.
To set the SelectedIndex on page load to 5:
Sub Page_Load(Sender As Object, E As EventArgs) Handles Me.Load
ddl.SelectedIndex = 5
End Sub