Avatar

Level 10

You can do this way..

Place the code in Inititalize event with Java Script

if(DropDownList1.rawValue == null)

    DropDownList1.selectedIndex = 0;

You need to check if the Dropdown has a value selected from the previous save.. If not then set the selected item to 0th index. (which is 1st one in the dropdown values)..

Thanks

Srini