Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a DropDownList whose SelectedValue and DataSource are both databound. The control always selects the first item in the list regardless of the SelectedValue. The correct value is passed to the database when updating the value but the first item is always selected. What am I missing here?

<asp:DropDownList ID="SendAsDdl" runat="server" 
SelectedValue='<%# Bind("SendAsId") %>' EnableViewState="true"         
DataSource='<%# CM.Email.Users.GetSendAsList(OfficeId) %' />
share|improve this question

1 Answer

up vote 1 down vote accepted

You can't put scriplets into server side controls. You have to set the SelectedValue from your code behind:

SendAsDdl.SelectedValue = this.SendAsId;
share|improve this answer
Thank you, sir. – Mark Williams Jan 16 '12 at 20:45
@MarkWilliams - my pleasure! – Adam Rackis Jan 16 '12 at 20:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.