I have Master table Name is "master":
id
name
and Detail table name is "detail" :
id
masterid
title
when I click Master/Detail View
and I try access to Detail table from Row_Rendered like
CurrentPage.title.ViewValue = CurrentPage.title.ViewValue + "Om";
I wrote this code in Row_Rendered in Detail table
it is shown error
RuntimeBinderException: 'ASPNETMaker2023.Models.CommitteesV2.MasterView' does not contain a definition for 'title'
How to solve this problem ?