我在vs2010中有两个项目。一个分享资源文件的分享点(AppGlobalResource)。
当我在sharepoint项目中使用以下代码时,它运行良好:
public static string GetResourceString(string messageCode)
{
var text = System.Web.HttpContext.GetGlobalResourceObject(ResourceFiles.Default, messageCode);
return text.ToString();
}
但是,如果我使用C#代码(在sharepoint项目中作为参考包含),它就不起作用