使用GetGlobalResourceObject读取资源文件

时间:2011-03-19 06:27:22

标签: c# sharepoint resources

我在vs2010中有两个项目。一个分享资源文件的分享点(AppGlobalResource)。

当我在sharepoint项目中使用以下代码时,它运行良好:

public static string GetResourceString(string messageCode)
        {

                var text = System.Web.HttpContext.GetGlobalResourceObject(ResourceFiles.Default, messageCode);
                return text.ToString();

        }

但是,如果我使用C#代码(在sharepoint项目中作为参考包含),它就不起作用

0 个答案:

没有答案