I have created a custom list from another list in sharepoint, it is saved into the "List Template Gallery" I need to get this new list template by using web services, but the .GetListTemplates method of lists does not retrieve the custom templates. How can I get the custom templates?, so then I can use it to create a list.
WSS 3.0 - Can not display created custom template lists with web services
1.1k Views Asked by danae At
3
There are 3 best solutions below
3
On
string listName = "ListTemplateName";
foreach (SPListTemplate template in web.ListTemplates)
{
if (template.InternalName.Equals(internalName))
{
return template;
}
}
0
On
Have you tried this using this?
[MSDN][1]http://msdn.microsoft.com/en-us/library/dd586523(office.11).aspx
It should retrieve all the lists including the List Template Gallery, wich is hidden...
Custom Web Service is the way to go - Check this out