如何在asp:Image控件中使用全局资源文件中的图像或图标资源来设置ImageUrl属性?

时间:2010-01-12 17:17:08

标签: asp.net localization

如何在asp:Image控件中使用全局资源文件中的图像或图标资源来设置ImageUrl属性?

1 个答案:

答案 0 :(得分:1)

在代码中:

ClientScriptManager cs = Page.ClientScript;
myImage.ImageUrl= cs.GetWebResourceUrl(type, "resource name");

在标记中:

<asp:Image 
     ImageUrl="<%= Page.ClientScript.GetWebResourceUrl(typeof(MyClass), 
     "resource name") %>" 
 />

有关详细信息,请参阅ClientScriptManager.GetWebResourceUrl的文档。