首页 > 其他 > 详细

避免图片路径访问405,可以用图片控件来显示局部相对路径,不需要域名就不会出现jpg静态资源访问错误

时间:2018-11-02 12:24:18      阅读:93      评论:0      收藏:0      [点我收藏+]
<asp:Image ID="Image1" runat="server"/>


 protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                if (string.IsNullOrEmpty(Request.Params["CarPicPath"]) == false)
                {
                    string CarPicPath = Request.Params["CarPicPath"];
                    Image1.ImageUrl = CarPicPath;                
                }
            }
        }

避免图资料405,可以用图片控件来显示后缀路径,不需要域名就不会出现jpg静态资源访问错误

  

CarPicPath  = "/updload/img/20xxxxxx/xxxxxxx.jpg";

避免图片路径访问405,可以用图片控件来显示局部相对路径,不需要域名就不会出现jpg静态资源访问错误

原文:https://www.cnblogs.com/zclaude/p/9895404.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!