I have a dropdown list boxes in the page.
When I Load the page. the dorpdown list boxes values not showing Please Select.. its allways showing the previously selcted value.
why its not defaulting it to Please select is that I am doing something wrong in this aspx page?
thanks
Most likely because it is finding existing values for those drop down lists in the ModelState and applying those.
Try adding this code to your Index method:
This is assuming you mean after you click the Save button?