in my scenario i want to select the default value for the drop down list per the value in some session variable at the time?
plz tell me how to achieve this...
i try
If Session("Department") <> "" Then
Me.DDLDepartments.SelectedItem.Selected = Me.DDLDepartments.SelectedItem.Text = Session("Department")
End If
but its not working..
thx..
...
Go to the complete details ...