本文整理汇总了C#中TableCell.FindControl方法的典型用法代码示例。如果您正苦于以下问题:C# TableCell.FindControl方法的具体用法?C# TableCell.FindControl怎么用?C# TableCell.FindControl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TableCell
的用法示例。
在下文中一共展示了TableCell.FindControl方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitAttributeUc
private AttributeUc InitAttributeUc(TableCell cell)
{
AttributeUc auc1 = cell.FindControl("auc1") as AttributeUc;
Label laid = cell.FindControl("laid") as Label;
auc1.AttributeID = BaseItem.ToInt32(laid.Text);
auc1.Attribute = Attributes[rowIndex];
auc1.RowIndex = rowIndex++;
auc1.Uc.ServiceID = Uc.ServiceID;
auc1.Uc.CategoryID = Uc.CategoryID;
auc1.Uc.ItemID = Uc.ItemID;
auc1.Uc.LayoutID = Uc.LayoutID;
auc1.Uc.TableName = Uc.TableName;
if (Uc.LayoutID == LayoutE.SearchResult || Uc.LayoutID == LayoutE.View)
{
ituc1.Uc.ServiceID = Uc.ServiceID;
ituc1.Uc.CategoryID = Uc.CategoryID;
ituc1.Uc.ItemID = Uc.ItemID;
ituc1.Uc.LayoutID = Uc.LayoutID;
ituc1.Uc.TableName = Uc.TableName;
ituc1.InitControl();
}
if (Uc.LayoutID == LayoutE.SearchResult)
{
ph3.Visible = true;
imgc.ImageUrl = Category.IconUrl(Uc.CategoryID);
imgc.AlternateText = Uc.Category.Name;
imgc.ToolTip = Uc.Category.Name;
imgc.Visible = true;
lnks.Text = Uc.Service.Name;
lnks.NavigateUrl = UWeb.GetUrlServiceSearch(Uc.ServiceID, SearchTypeE.Browse);
lnkc.Text = Uc.Category.Name;
lnkc.NavigateUrl = UWeb.GetUrlItemSearch(Uc.ServiceID, Uc.CategoryID, SearchTypeE.Browse);
}
return auc1;
}