Guys,
I have a GridView however to show the detail information I have decided not to use a FormView / DetailsView as the detail is quite complex and covers a few nested grids (seem to have more issues getting data binding work this way )
However if I change some of the detail information when I press the update button I can't get the GridView to update. I have code such as
AspnetMembershipEntity userMember = new AspnetMembershipEntity(UserIdEditing);
userMember.User.TelephoneNo = telephoneNoTextBox.Text;
userMember.User.Name = nameTextBox.Text;
userMember.Save(true);
I tried a number of things immediately after this code
1) Calling DataBind on the GridView. However I didn't set the DataSource property at this time as the DataSourceID is already set to an LLBLGenDataSource control.
2) Calling DataBind on the Data source control.
3) Setting the Refresh property on the Data source control to true
I'm also using Self Serviciing if this matters.
Cheers
Matt