当我上传我的Web应用程序时,我在我的Web应用程序中使用硬编码图像默认图像URL是
但我希望我的默认网址为
..../Images/blank_profile_female.jpg
我做了像这样的事情
imgbx.ImageUrl = "http://localhost61111/Images/facebook-default-no-profile-pic.jpg";
可能吗?
答案 0 :(得分:0)
对于MVC应用程序
Url.Content("~/Images/blank_profile_female.jpg")
对于Web应用程序
Server.MapPath("~/Images/blank_profile_female.jpg");