Setting preview image for Sharepoint 2010 custom web template

和自甴很熟 提交于 2019-12-25 03:53:30

问题


I have a custom Sharepoint 2010 Web Template and I would like to set a custom preview image for it in the Sharepoint add site gallery.

Example (I wanna set a custom image for the "Project Template Site" custom web template):

Note: I already tried setting the ImageUrl property of the WebTemplate element (http://msdn.microsoft.com/en-us/library/ff408392.aspx) and it is not working..


回答1:


I've managed to solve my problem. Apparently the ImageUrl property of the template element only works with relative URLs (and I was trying to set it to an absolute URL).

<WebTemplate
    (...)
    ImageUrl="/_layouts/images/example.PNG" /> <!-- Works -->


来源:https://stackoverflow.com/questions/7041790/setting-preview-image-for-sharepoint-2010-custom-web-template

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!