【发布时间】:2012-06-07 17:26:22
【问题描述】:
我正在通过 Visual Studio 中的 Elements.xml 文件创建新的内容类型。我在 XmlDocment 节点中引用了一个自定义的新表单文档
<XmlDocument NamespaceURI="http://schemas.microsoft.com/sharepoint/v3/contenttype/forms">
<FormTemplates xmlns="http://schemas.microsoft.com/sharepoint/v3/contenttype/forms">
<Display>ListForm</Display>
<Edit>ListForm</Edit>
<New>MyNewList</New>
</FormTemplates>
</XmlDocument>
现在,当我创建内容类型的新实例时,我得到一个空白。我已经读到这个新节点应该引用一个 ASCX 控件。但是我还没有找到任何好的例子来引导我完成这个过程。
【问题讨论】:
标签: sharepoint sharepoint-2010 content-type sharepoint-api