Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经对此进行了谷歌搜索和爬网,但找不到任何可靠的信息。
在 ASP.NET 中更改图像的照片源有什么区别
myImage.Attributes["src"] = "/files/image1.jpg";
和
myImage.ImageUrl = "~/files/image1.jpg";
ImageUrl 属性的优点是您可以使用 ~ 字符,它代表应用程序根。
这在应用程序的根位于子文件夹中并且您不需要在代码中硬编码文件夹名称的情况下很有用。