我在App_GlobalResources.But下有资源文件,现在由于项目结构的最新变化,我需要将其移动到本地项目(不是App_LocalResources)。
我将resx文件设为
custom tool to : PublicResXFileCodeGenerator
custom tool namespace to: Resources
and build action: Embeded Resource
我想要<telerik:RadButton runat="server" ID="lblWeek" Text="<%$ManagementResources,ONE_WEEK %>"/>
哪个无效
从Page_init()背后的代码开始工作
protected void Page_Init(object sender, EventArgs e)
{
btnsample.Text = SourceManagementResources.BUTTON_TEXT_INSTALL;
}
但我不想从后面的代码中执行此操作。有人请建议我如何从我的ascx控件中使用它。
来自设计者的资源文件的命名空间是:
namespace Resources {
}
请建议