有谁知道如何获取内容页面的标签名?我知道如何获取id但不知道如何获得名称? 到目前为止,这是我的代码:
int userId = umbraco.BasePages.UmbracoEnsuredPage.GetUserId(umbraco.BasePages.UmbracoEnsuredPage.umbracoUserContextID);
DocumentType typeToCreate = DocumentType.GetByAlias("FAQItem");
Document newDoc = Document.MakeNew("test123", typeToCreate, new global::umbraco.BusinessLogic.User(userId), 1161);
newDoc.getProperty("yourName").Value = newDoc.getProperty("Question");
foreach(var prop in newDoc.GenericProperties)
{
newDoc.getProperty("email").Value += prop.PropertyType.TabId + " ";
}
答案 0 :(得分:3)
我使用.getVirtualTabs管理同样的事情,例如:
foreach (var t in dt.getVirtualTabs())
{
if (t.Id == id)
return t.Caption;
}