我正在通过 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 控件。但是,我还没有找到任何可以引导我完成整个过程的好例子。