当前位置: 代码迷 >> ASP.NET >> 图片显示的有关问题
  详细解决方案

图片显示的有关问题

热度:5964   发布时间:2013-02-25 00:00:00.0
图片显示的问题?
我用了一个Image控件,在主机上调试的时候是可以正常显示图片的
Internet   信息服务   主目录为:C:\Inetpub\wwwroot\

设置为网络访问后   主目录为:C:\Inetpub\wwwroot\仓库管理系统
图片就无法显示了,不知道问题在哪里?

private   void   Page_Load(object   sender,   System.EventArgs   e)
{
//   在此处放置用户代码以初始化页面
if(!IsPostBack)
{
string   path1   =   Server.MapPath( " ");
string   path2   =   path1+ "\\Image\\pic.bmp ";
Image1.ImageUrl   =   path2;//显示图片
                                                          }
                                    }


------解决方案--------------------------------------------------------
Image1.ImageUrl 是web地址不是物理地址,如
Image1.ImageUrl = "/Image/pic.bmp ";//相对地址,或
Image1.ImageUrl = "http://localhost/myweb1/Image/pic.bmp ";//绝对地址
  相关解决方案