我正在通過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控件。但是,我還沒有找到任何好的例子來引導我完成整個過程。