避免图片路径访问405,可以用图片控件来显示局部相对路径,不需要域名就不会出现jpg静态资源访问错误
程序员文章站
2022-12-11 08:49:54
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { if (string.IsNullOrEmpty(Request.Params["CarPicPath"]) == false) ... ......
<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";