如何使用C#从ASP.NET中的文件夹中获取图像 [英] How to fetch the image from the folder in ASP.NET using C#

查看:72
本文介绍了如何使用C#从ASP.NET中的文件夹中获取图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个名为digital的文件夹,其中有很多图像。





我的设计如下



Desitnation CHN - TBM



在那个数字文件夹CHN_TBM.png图片就在那里。



i想要检查Desitnation CHN - 在数字文件夹中找到TBM。我想在页面加载中显示该图像



我怎样才能在asp.net中使用C#。



我尝试了什么:



如何使用c#

i have one folder called digital in that lot of images are there.


My design as follows

Desitnation CHN - TBM

in that digital folder CHN_TBM.png image is there.

i want to check Desitnation CHN - TBM is found in the digital folder. i want to display that image in page load

for that how can i do in asp.net using C#.

What I have tried:

how to fetch the image from the folder in asp.net using c#

推荐答案

试试这个



try this

string name = "CHN - TBM";
           string folderPath = Server.MapPath("digital");
           string targetFile = name.Replace("-", "_").Replace(" ", "") + ".png";
           string filePath = folderPath + "\\" + targetFile;
           if (System.IO.File.Exists(filePath))
               myImage.ImageUrl = "~/digital/" + targetFile;





make确保根目录中的digital文件夹。



make sure "digital" folder in root directory.


这篇关于如何使用C#从ASP.NET中的文件夹中获取图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆