vote up 0 vote down star

I have a MultiView control which has a View in which a DataList is filled like this:

<asp:DataList ID="DataList6" runat="server" DataSourceID="SqlDataSource11" Width="100%">
<ItemTemplate>
   <!-- rendering is left out to keep this sample simple -->
</ItemTemplate>
</asp:DataList>

The problem is that when I switch to another view of the MultiView control, to edit the content of this DataList and go back after saving the data, the data is not refreshed. I have checked the database and I am certain that the data has changed.

How should I solve this?

flag

1 Answer

vote up 1 vote down check

Try DataList6.DataBind

link|flag
I feel stupid now... thanks, it works – Peter May 20 at 13:54
Glad it worked. Don't be hard on yourself! – RichardOD May 20 at 14:10

Your Answer

Get an OpenID
or

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