In a form aspx page I have some controls as embedded userControl. This is as I include userControl :
I set an entity to a property control from vb.aspx code:
All runs well because data is displayed on navigator:
Problem appears when 'save' button is pushed, there, my private _item is Nothing:
How can I do to keep Me.Item (and Me._item) populated?
Sorry, perhaps question is not enough detailed, I have include relevant code, ask for more details if needed.
<telerik:RadAjaxPanel ID="RadAjaxPanel000" runat="server" LoadingPanelID="RadAjaxLoadingPanel000">
...
<ardc:MyDataFormCtrl runat="server" ID="MyDataCtrl1" />I set an entity to a property control from vb.aspx code:
Dim myEntityData= ctx.AnualitatsDeRecerca.Where(Function(x) x.Id = ... ).FirstOrDefault()
MyDataCtrl1.Item = myEntityDataAll runs well because data is displayed on navigator:
Public Property Item As MyEntityType Get ... Set(value As MyEntityType) _item = value txtDescription.Text = Item.someItemData End SetEnd PropertyProblem appears when 'save' button is pushed, there, my private _item is Nothing:
Private Sub ButtonItemSave_Click(sender As Object, e As System.EventArgs) Handles ButtonItemSave.Click 'here Me.Item, also, me._item, is Nothing!! what happens?How can I do to keep Me.Item (and Me._item) populated?
Sorry, perhaps question is not enough detailed, I have include relevant code, ask for more details if needed.