Hi.
Currently, I have two gridview.
one thing is page list.
another thing is items list about that.
I want to changed item list by selecting page list.
below my code.
----------------------------------------------------------------------------------------
void Selection(object selecteditem)
{
.....
if (ManagerType == AppType.Status)
StatusTag.DataFilter(Page.PageItemList.Where(r => r.PageNum == pageNum).ToList());
if (ManagerType == AppType.Analog)
AnalogTag.DataFilter(Page.PageItemList.Where(r => r.PageNum == pageNum).ToList());
....
}
----------------------------------------------------------------------------------------
It's well behaving.
But it seems that memory crash.
Because pipe communication is disconnected.
Why occur that problem?
Currently, I have two gridview.
one thing is page list.
another thing is items list about that.
I want to changed item list by selecting page list.
below my code.
----------------------------------------------------------------------------------------
void Selection(object selecteditem)
{
.....
if (ManagerType == AppType.Status)
StatusTag.DataFilter(Page.PageItemList.Where(r => r.PageNum == pageNum).ToList());
if (ManagerType == AppType.Analog)
AnalogTag.DataFilter(Page.PageItemList.Where(r => r.PageNum == pageNum).ToList());
....
}
----------------------------------------------------------------------------------------
It's well behaving.
But it seems that memory crash.
Because pipe communication is disconnected.
Why occur that problem?