当我部署解决方案时,我需要创建文件夹并将图标放在那里。我该怎么做?
问问题
477 次
1 回答
1
您可以为此使用模块。
http://msdn.microsoft.com/en-us/library/ms453137.aspx
将模块添加到 Visual Studio 项目并在其中添加图像后,您可以通过以下方式引用它:
var web = SPContext.Current.Web; //web scope, if site scope then use SPContext.Current.Site.RootWeb instead.
var myFile = web.ServerRelativeUrl + "/ModuleName/image.jpg"
于 2013-02-04T12:40:52.630 回答