如何在asp.net网站中使用图片资源?
我有一个 ac# 网站,它使用了大量带有嵌入英文文本的图像。
如何使用标准资源文件根据语言交换图像?
我的 App_GlobalResources 目录中有一个 resx 文件,但我似乎无法将其正确插入 imageurl 的 asp:image 控件中。
有想法吗?
更新:
有关更多信息,这里是图像标签代码:
<asp:image runat="server" ID="img2" ImageUrl="<%$Resources: Resource, cs_logo %>" />
客户端的结果是:
<img id="img2" src="System.Drawing.Bitmap" style="border-width:0px;" />
请注意,源显然不是我所期望的......
I have a c# site which makes use of a lot of images with embedded english text.
How can I use a standard resource file to swap out images depending on the language?
I have a resx file in my App_GlobalResources directory, but I can't seem to get it plugged into an asp:image control for the imageurl correctly.
Ideas?
UPDATE:
For some further information, here is the image tag code:
<asp:image runat="server" ID="img2" ImageUrl="<%$Resources: Resource, cs_logo %>" />
The result on the client side is:
<img id="img2" src="System.Drawing.Bitmap" style="border-width:0px;" />
Note that the source is obviously not what I expected...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将图像的网址存储在资源文件中,并在控件中使用以下内联代码
更新
此链接可以对您想要完成的任务有所帮助
,或者
您也可以尝试将资源存储为字符串并将值设置为 url 位置,而不是将图像存储在资源文件中。
you can store the url of the image in your resource file and use the following inline code in the control
Update
this link could be helpful on what you are trying to accomplish
or
you can also try to stored the resource as string and set the value to the url location instead of storing the image in the resouce file.
您可能尝试做的一件事是创建一个简单的“图像服务”,它可以从嵌入式资源以正确的格式提供图像。
您不必创建 Web 服务本身,您只需创建一个 aspx 页面,然后在后面的代码中将 Response.ContentType 更改为“image/png”或您喜欢的任何格式。 这还需要页面本身的 URL 中包含一个 get 参数,但可以轻松过滤。 因此,图像服务的 Page_Load 方法可能如下所示:
然后回到 ASPX 页面,您...
哦,不要忘记在页面中导入 System.Drawing 和 System.Drawing.Imaging。
One thing you might try to do is to create a simple "image service" that can serve up the image in the proper format from the embedded resources.
You don't have to create web service itself, you simply create an aspx page and in the code behind you change the the Response.ContentType to be "image/png" or whatever format you prefer. This also requires a get parameter in the URL to the page itself, but that can be easily filtered. So the Page_Load method of your image service might look something like this:
Then back on your ASPX page you have...
Oh, and don't forget to import System.Drawing and System.Drawing.Imaging in the page.
如果您使用的是全局资源文件,您需要像这样添加它
,因为我使用 img 控件,所以我为其添加了 runatserver 和 id
if you are using global resources file you need to add it like this
and because i use img control i added runatserver and id for it