I have made Custom Content Type, and List Definition from that Content Type. What I'm trying to do now, is create custom display/edit/add forms for List Item, and when user clicks on Add New Item, navigate to add custom form ( AddItem.aspx for instance ). This is the schema definition of my List
<XmlDocuments>
<XmlDocument NamespaceURI="http://schemas.microsoft.com/sharepoint/v3/contenttype/forms/url">
<FormUrls xmlns="http://schemas.microsoft.com/sharepoint/v3/contenttype/forms/url">
<Display>_layouts/Tests/ViewProject.aspx</Display>
<Edit>_layouts/Tests/EditProject.aspx</Edit>
<New >_layouts/Tests/AddProject.aspx</New>
</FormUrls>
</XmlDocument>
</XmlDocuments>
But clicking on the Add new Item causes error, and the url of the link is http://myserver/_layouts/listform.aspx
Anybody can help me with this ?