I have been fooling around with SharePoint 2010 and to be honest I don't have any problem except maybe how the event flows are handled. I might be missing something.
As of right now I have a visual web part which has a button in its control and a label for simple text outputs. So I made myself a test model object (simple object class named CounterModel with a int property) so I could easily keep track of it with the view state.
So in my web part's init function I check if ViewState[ID_COUNTER_MODEL] is equal to null. If it is I create a new CounterModeland add it to the viewstate and if it isn't null i simply add my ViewState[ID_COUNTER_MODEL] to my private property of type CounterModel.
After the init I add an event listener of type mouse click on the button. The problem I am facing is that when I press the button the form is disposed, recreated and then calls my event listener wich results in reassigning my CounterModelobject from ViewState[ID_COUNTER_MODEL]. So any changes in the event listener are never really registered. What am I doing wrong and how should I handle these kind of situations.
Here are some code example:
TestCounter Object
class CounterModel
{
public int number;
public CounterModel() {
number = 0;
}
}
Visual Web Part
private CounterModel counterModel;
public CounterWebPart() {
if (ViewState[CounterPropertiesIndexes.ID_COUNTER_MODEL] != null){
counterModel = (CounterModel)ViewState[CounterPropertiesIndexes.ID_COUNTER_MODEL];
} else {
counterModel = new CounterModel();
ViewState[CounterPropertiesIndexes.ID_COUNTER_MODEL] = counterModel;
}
}
protected override void CreateChildControls(){
CounterWebPartUserControl control = (CounterWebPartUserControl)Page.LoadControl(_ascxPath);
Controls.Add(control);
control.GetBtnChangeLabel().Click += OnBtnChangeLabelClicked;
control.GetLabel().Text = counterModel.number.ToString();
}
public void OnBtnChangeLabelClicked(object sender, EventArgs e) {
counterModel.number++;
(CounterModel)ViewState[CounterPropertiesIndexes.ID_COUNTER_MODEL] = counterModel;
}