• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

使用C#从ASP.NET的文件夹获取图像

用户头像
it1352
帮助1

问题说明

我有一个名为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#

正确答案

#1
试试这个



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.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcebbjg
系列文章
更多 icon
同类精品
更多 icon
继续加载