Hi,
I am using model binding and defined the ItemTyp and the UpdateMethod and InsertMethod in the markup ascx file. Everything successfully binded up page load.
I make the change in one of the controls to change the property value and click save. The debugges takes me to the updatemethod and eventually to the
TryUpdataeModel(Item) call. After the call is executed, I noticed that the property value was not set.
I am not sure what happens and why the TryUpdateModel call is not updating the Item object with the selection change. Any help is appreacited.
public void fvAddEditResponseObjection_UpdateItem(int Id)
{
RESPONSE_CASE_OBJECTION item = blRESPONSE_CASE_OBJECTION.GetData(Id);
if (Pag ...
Go to the complete details ...