- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
protected virtual string GetParentTableControlID()
{
try
{
if (this.Parent is BaseApplicationTableControl) return this.Parent.ID;
if (this.Parent.Parent is BaseApplicationTableControl) return this.Parent.Parent.ID;
if (this.Parent.Parent.Parent is BaseApplicationTableControl) return this.Parent.Parent.Parent.ID;
if (this.Parent.Parent.Parent.Parent is BaseApplicationTableControl) return this.Parent.Parent.Parent.Parent.ID;
}
catch (Exception)
{
}
return "";
}
wvxvw 03.04.2015 14:34 # 0
guest 11.07.2015 19:44 # 0
А как собтвенно это можно изящнее написать, если надо?